mcp-server-chart vs cfbd-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | cfbd-mcp-server by lenwood | |
|---|---|---|
| Stars | ★ 4,068 | ★ 26 |
| 30d uses | 10,239 | — |
| Score | 84 | 38 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolssportsDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 13 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
cfbd-mcp-server · Summary
CFBD MCP server provides college football statistics API access within Claude Desktop.
mcp-server-chart · Use cases
- Data analysts creating visual reports from datasets
- AI assistants generating custom charts based on user requests
- Web applications embedding visualization capabilities via HTTP API
cfbd-mcp-server · Use cases
- Analyzing college football team performance and statistics
- Accessing real-time game results and scores
- Generating insights from historical game data
mcp-server-chart · Install
Installation
Install globally:
npm install -g @antv/mcp-server-chartFor Desktop Apps (e.g., Claude Desktop, VSCode):
{
"mcpServers": {
"mcp-server-chart": {
"command": "npx",
"args": ["-y", "@antv/mcp-server-chart"]
}
}
}For Windows:
{
"mcpServers": {
"mcp-server-chart": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
}
}
}cfbd-mcp-server · Install
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"
}
}
}
}