Connect AI assistants to comprehensive fantasy football data through our Model Context Protocol server. Access real-time player analytics, trade evaluation, matchup analysis, and season projections powered by Laravel's robust data layer and Sleeper API integration.
Connect your AI assistant to fantasy football data in three simple steps
Close your client (Claude Desktop or Cursor)
Create or edit the config file:
Add this server using the configuration examples below
{
"mcpServers": {
"fantasy-football-mcp": {
"command": "npx",
"args": [
"-y",
"supergateway",
"--streamableHttp",
"https://www.sleeperdraft.com/mcp"
]
}
}
}
{
"mcpServers": {
"fantasy-football-mcp": {
"transport": {
"type": "http",
"url": "https://www.sleeperdraft.com/mcp"
}
}
}
}
Restart your client. In Cursor, manage servers in Settings → MCP; in Claude, the server appears under MCP servers.
Direct API calls for custom integrations
POST /api/mcp/tools/evaluate-trade
{
"receiving": [
{"search": "Josh Allen"},
{"search": "Travis Kelce"}
],
"sending": [
{"search": "Patrick Mahomes"},
{"search": "Tyreek Hill"}
]
}
POST /api/mcp/tools/fetch-matchups
{
"league_id": "123456789012345678",
"week": 5
}
POST /api/mcp/tools/fetch-player
{
"search": "Christian McCaffrey"
}
POST /api/mcp/tools/fetch-trending-players
{
"type": "add"
}
https://www.sleeperdraft.com/mcp
https://www.sleeperdraft.com/api/mcp/tools
https://www.sleeperdraft.com/api/openapi.yaml