This is a Model Context Protocol (MCP) server that provides AFL (Australian Football League) data from the Squiggle API. It allows you to retrieve information about past AFL games, current and past standings, team information, power rankings, tips, and projections. This MCP Server offers comprehensive access to AFL data, providing tools for: - 🏆 Retrieving current AFL standings - 📊 Retrieving pa
Add this skill
npx mdskills install willvelida/mcp-afl-serverComprehensive AFL data MCP server with extensive tools, clear setup, and good examples
1# 🏈 AFL (Australian Football League) MCP Server23This is a Model Context Protocol (MCP) server that provides AFL (Australian Football League) data from the Squiggle API. It allows you to retrieve information about past AFL games, current and past standings, team information, power rankings, tips, and projections.45[](https://dotnet.microsoft.com/download/dotnet/9.0)6[](LICENSE)7[](https://modelcontextprotocol.io)89## ✨ Features1011This MCP Server offers comprehensive access to AFL data, providing tools for:1213- 🏆 Retrieving current AFL standings14- 📊 Retrieving past AFL standings by round and year15- 🎯 Retrieving results from particular games or rounds16- 👥 Retrieving basic information about teams17- 📅 Retrieving lists of teams who played in particular seasons18- 🔮 Getting tips and predictions for games19- 📈 Accessing power rankings and projected ladders20- 🔍 Managing data sources and configurations2122## 📋 Prerequisites2324- [.NET 9.0](https://dotnet.microsoft.com/download/dotnet/9.0) or later25- A Model Context Protocol (MCP) compatible client (e.g., Claude for Desktop)26- Internet connection for accessing the Squiggle API2728## ⚡ Quick Install2930### 🎯 Claude Desktop Integration31321. Edit the Claude for Desktop config file:33 - **macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`34 - **Windows**: `%APPDATA%\Claude\claude_desktop_config.json`35362. Add the server configuration:3738```json39{40 "mcpServers": {41 "mcp-afl-server": {42 "command": "dotnet",43 "args": [44 "run",45 "--project",46 "C:\\path\\to\\mcp-afl-server\\src",47 "--no-build"48 ]49 }50 }51}52```5354## 🚀 What can you do with the AFL MCP Server?5556Here are some example prompts you can try once connected:5758### 🏆 Current Season Information5960- "What are the current AFL standings?"61- "Show me the results from Round 10, 2024"62- "Get information about the Richmond Tigers"63- "List all teams that played in the 2024 season"6465### 📊 Historical Data6667- "What were the standings after Round 15 in 2023?"68- "Show me all results from Round 1, 2022"69- "Get the result of a specific game"7071### 🔮 Tips & Predictions7273- "What are the current tips for upcoming games?"74- "Show me tips for Round 5, 2024"75- "Get tips for a specific game"7677### 📈 Advanced Analytics7879- "Show me the power rankings for Round 20, 2023"80- "Get the projected ladder for Round 15, 2024"81- "List all available data sources"8283## 📡 Squiggle API8485This server uses the Squiggle API to retrieve AFL data. The API provides comprehensive methods to fetch:8687- 🎯 Live scores and fixtures88- 📊 Historical match results89- 👥 Team information and statistics90- 🏆 Ladder positions and standings91- 🔮 Tips and predictions92- 📈 Power rankings and projections9394Please use the API responsibly! All information about proper usage can be found at [api.squiggle.com.au](api.squiggle.com.au).9596## 🛠️ MCP Tools9798The server exposes the following tools through the Model Context Protocol:99100### 🎯 Game Information101102| **Tool** | **Description** |103|:--------:|:---------------:|104| `GetGameResult` | Gets result from a played game |105| `GetRoundResultsByYear` | Get the results from a round of a particular year |106107### 🏆 Standings Information108109| **Tool** | **Description** |110|:--------:|:---------------:|111| `GetCurrentStandings` | Gets the current standings of the AFL |112| `GetStandingsByRoundAndYear` | Get the standings for a particular round and year |113114### 👥 Team Information115116| **Tool** | **Description** |117|:--------:|:---------------:|118| `GetTeamInfo` | Gets information for an AFL team |119| `GetTeamsBySeason` | Gets a list of teams who played in a particular season |120121### 🔮 Tips & Predictions122123| **Tool** | **Description** |124|:--------:|:---------------:|125| `GetFutureTips` | Get the tips for current and future games |126| `GetTipsByGame` | Get the tips of a particular game |127| `GetTipsByRoundAndYear` | Get the tips for a particular round and year |128129### 📈 Power Rankings & Projections130131| **Tool** | **Description** |132|:--------:|:---------------:|133| `GetPowerRankingByRoundAndYear` | Get Power Ranking by Round and Year |134| `GetPowerRankingByRoundYearAndSource` | Get Power Ranking by Round, Year, and Model Source |135| `GetTeamPowerRankingByRoundAndYear` | Get Power Ranking for Team by Round, Year, and Model Source |136| `GetProjectedLadderByRoundAndYear` | Get the projected ladder for a particular round and year |137| `GetProjectedLadderByRoundAndYearBySource` | Get the projected ladder by source for a particular round and year |138139### 🔍 Sources & Configuration140141| **Tool** | **Description** |142|:--------:|:---------------:|143| `GetSources` | Gets a list of sources |144| `GetSourceById` | Gets a source |145146## 📜 License147148This project is licensed under the [MIT License](LICENSE) - see the LICENSE file for details.149150## 💬 Feedback151152We're building this in the open and your feedback is much appreciated!153154🐛 [Report a bug or request a feature](https://github.com/willvelida/mcp-afl-server/issues/new)155156Your input helps shape the future of the AFL MCP Server and makes it better for everyone in the AFL community.157158## 🏈 About AFL159160The Australian Football League (AFL) is the premier professional Australian rules football competition in Australia. This server provides programmatic access to comprehensive AFL data to enhance your analysis, applications, and understanding of the game.161162---163164**Built with ❤️ for the AFL community**
Full transparency — inspect the skill content before installing.