
cfbd-mcp-server
by lenwood·★ 26·Score 38
CFBD MCP server provides college football statistics API access within Claude Desktop.
Overview
This MCP server implementation connects to the College Football Data API V2, enabling users to query comprehensive college football statistics and data directly from Claude Desktop. It provides access to game results, team records, player statistics, play-by-play data, drive summaries, rankings, and win probability metrics. The server includes pre-built analysis templates and supports natural language queries for easy data retrieval. It maintains active maintenance with regular updates and includes thorough documentation for installation and usage.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this MCP server if you need to query college football data within Claude Desktop and want natural language access to game statistics, team records, and analytics.
When NOT to choose this
Avoid this server if you need data for sports other than college football, as it only specializes in NCAA football statistics.
Tools this server exposes
9 tools extracted from the READMEget-gamesRetrieve game data including scores and team information
get-recordsGet team season records and statistics
get-games-teamsAccess detailed team game statistics and performance metrics
get-playsQuery play-by-play data for specific games
get-drivesAnalyze drive summaries and results
get-play-statsView individual play statistics and metrics
get-rankingsCheck team rankings across different polls
get-pregame-win-probabilitySee pre-game win probabilities
get-advanced-box-scoreAccess detailed game statistics and analytics
Comparable tools
Installation
Installing via Smithery
To install College Football Data Server for Claude Desktop automatically via [Smithery](https://smithery.ai/server/cfbd):
npx -y @smithery/cli install cfbd --client claudeManual Installation
- Clone this repository:
git clone https://github.com/yourusername/cfbd-mcp-server
cd cfbd-mcp-server- Create and activate a virtual environment:
uv venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate- Install dependencies:
uv pip install -e .- Create a
.envfile in the project root and add your API key:
CFB_API_KEY=your_api_key_hereClaude Desktop Configuration
- Open your Claude Desktop configuration at:
- macOS: ~/Library/Application Support/Claude/claude_desktop_config.json - Windows: %APPDATA%\Claude\claude_desktop_config.json
- Add the server configuration:
{
"mcpServers": {
"cfbd-mcp-server": {
"command": "uv",
"args": [
"--directory",
"/full/path/to/cfbd-mcp-server",
"run",
"cfbd-mcp-server"
],
"env": {
"CFB_API_KEY": "xxx",
"PATH": "/full/path/to/python"
}
}
}
}FAQ
- How do I get a College Football Data API key?
- You can get a free API key by signing up at https://collegefootballdata.com/key
- What are the API rate limits?
- The free tier has limited requests per minute. Higher rate limits are available to CFBD Patreon subscribers.
Compare cfbd-mcp-server with
Last updated · Auto-generated from public README + GitHub signals.