drio
Open app

Fantasy Premier League MCP Server

Source

Fantasy Premier League MCP Server

Catalog onlyCatalog onlySTDIO

Overview

Fantasy Premier League MCP Server is a Model Context Protocol (MCP) server that provides access to Fantasy Premier League (FPL) data and tools, allowing users to interact with FPL data in compatible clients.

To use the server, install it via PyPI or GitHub, and run it using the command line or integrate it with Claude Desktop for AI interactions.

  • Access to rich player data and statistics from the FPL API. - Detailed team information and gameweek data. - Player search and comparison functionalities.
  1. Analyzing player performance and statistics.
  2. Comparing players for fantasy team selection.
  3. Accessing current and historical gameweek data for strategic planning.

Add to your AI client

Use these steps to connect Fantasy Premier League MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "fantasy-pl-mcp-rishijatia": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-fantasy-pl-mcp-rishijatia"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "fantasy-pl-mcp-rishijatia": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-fantasy-pl-mcp-rishijatia"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "fantasy-pl-mcp-rishijatia": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-fantasy-pl-mcp-rishijatia"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "fantasy-pl-mcp-rishijatia": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-fantasy-pl-mcp-rishijatia"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "fantasy-pl-mcp-rishijatia": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-fantasy-pl-mcp-rishijatia"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "fantasy-pl-mcp-rishijatia": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-fantasy-pl-mcp-rishijatia"
      ]
    }
  }
}

FAQ

**What platforms are supported?**

Currently, it supports Claude Desktop and other MCP-compatible clients.

**Is mobile support available?**

No, mobile support is not currently available.

**What are the installation requirements?**

Requires Python 3.10 or higher and Claude Desktop for AI integration.