MCP Catalogs
Home

mcp-server-chart vs feyod-mcp

Side-by-side comparison to help you pick between these two MCP servers.

mcp-server-chart
by antvis
feyod-mcp
by jeroenvdmeer
Stars★ 4,068★ 1
30d uses10,239
Score8431
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
AI / LLM ToolsDatabaseOther
LanguageTypeScriptPython
Last committhis month10 mo ago

mcp-server-chart · Summary

A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.

feyod-mcp · Summary

MCP server for Feyenoord football data queries via natural language interface.

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

feyod-mcp · Use cases

  • Querying Feyenoord match results, lineups, and player statistics
  • Finding information about specific players and their performance
  • Retrieving historical data about opponents and past matches

mcp-server-chart · Install

Installation

Install globally:

npm install -g @antv/mcp-server-chart

For 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"]
    }
  }
}

feyod-mcp · Install

Installation

Using Docker (Recommended)

# Pull the Docker image
docker pull jeroenvdmeer/feyod-mcp

# Run the container
docker run -p 8000:8000 \
  -e LLM_PROVIDER="google" \
  -e LLM_API_KEY="your_api_key" \
  jeroenvdmeer/feyod-mcp

Local Setup

# Clone repositories
git clone https://github.com/jeroenvdmeer/feyod-mcp.git
git clone https://github.com/jeroenvdmeer/feyod.git
cd feyod-mcp

# Create and activate virtual environment
uv venv
source .venv/bin/activate  # or .venv\Scripts\activate on Windows

# Install dependencies
uv add "mcp[cli]" langchain langchain-openai langchain-google-genai python-dotenv aiosqlite

# Set up database
cd ../feyod
sqlite3 feyod.db < feyod.sql

cd ../mcp

Claude Desktop Configuration

Add to Claude Desktop config.json:

{
  "mcpServers": {
    "feyod": {
      "command": "python",
      "args": ["/path/to/feyod-mcp/main.py"],
      "env": {
        "LLM_PROVIDER": "google",
        "LLM_API_KEY": "your_api_key",
        "DATABASE_PATH": "../feyod/feyod.db"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.