
cfbd-mcp-server
by lenwood·★ 26·综合分 38
CFBD MCP 服务器在 Claude Desktop 中提供大学足球统计数据 API 访问。
概述
这个 MCP 服务器实现连接到 College Football Data API V2,使用户可以直接在 Claude Desktop 中查询全面的大学足球统计数据和数据。它提供对比赛结果、球队记录、球员统计、逐场数据、驱动摘要、排名和胜率指标的访问。该服务器包含预构建的分析模板,并支持自然语言查询以方便数据检索。它通过定期更新保持积极维护,并包含安装和使用的详细文档。
试试问 AI
装完之后,这里有 5 个你可以让 AI 做的事:
什么时候选它
如果您需要在 Claude Desktop 中查询大学橄榄球数据,并希望通过自然语言访问比赛统计、球队记录和分析,请选择此 MCP 服务器。
什么时候不要选它
如果您需要大学橄榄球以外的运动数据,请避免使用此服务器,因为它仅专注于 NCAA 橄榄球统计数据。
此 server 暴露的工具
从 README 抽取出 9 个工具get-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
可对比工具
安装
通过 Smithery 安装
通过 [Smithery](https://smithery.ai/server/cfbd) 为 Claude Desktop 自动安装大学足球数据服务器:
npx -y @smithery/cli install cfbd --client claude手动安装
- 克隆此存储库:
git clone https://github.com/yourusername/cfbd-mcp-server
cd cfbd-mcp-server- 创建并激活虚拟环境:
uv venv
source .venv/bin/activate # Windows: .venv\Scripts\activate- 安装依赖项:
uv pip install -e .- 在项目根目录创建
.env文件并添加您的 API 密钥:
CFB_API_KEY=your_api_key_hereClaude Desktop 配置
- 打开 Claude Desktop 配置文件:
- macOS: ~/Library/Application Support/Claude/claude_desktop_config.json - Windows: %APPDATA%\Claude\claude_desktop_config.json
- 添加服务器配置:
{
"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
- 如何获取 College Football Data API 密钥?
- 您可以通过在 https://collegefootballdata.com/key 注册免费获取 API 密钥
- API 速率限制是什么?
- 免费版每分钟请求数有限。CFBD Patreon 订阅者可获得更高的速率限制。
cfbd-mcp-server 对比
最后更新于 · 由 README + GitHub 公开数据自动生成。