cfbd-mcp-server vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
cfbd-mcp-server by lenwood | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 26 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 38 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具sports开发者工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 13 个月前 | 本月 |
cfbd-mcp-server · 概述
CFBD MCP 服务器在 Claude Desktop 中提供大学足球统计数据 API 访问。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
cfbd-mcp-server · 使用场景
- 分析大学球队表现和统计数据
- 获取实时比赛结果和比分
- 从历史比赛数据生成洞察
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
cfbd-mcp-server · 安装
通过 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"
}
}
}
}everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything