MCP Catalogs
Home

ultimate_mcp_server vs feyod-mcp

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

ultimate_mcp_server
by Dicklesworthstone
feyod-mcp
by jeroenvdmeer
Stars★ 149★ 1
30d uses
Score8531
Official
Categories
AI / LLM ToolsBrowser AutomationFile System
AI / LLM ToolsDatabaseOther
LanguagePythonPython
Last commit2 mo ago10 mo ago

ultimate_mcp_server · Summary

Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.

feyod-mcp · Summary

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

ultimate_mcp_server · Use cases

  • Complex document processing and analysis with OCR and structured data extraction
  • Web automation and research across multiple sites with browser control
  • Cost-optimized AI workflows through intelligent task delegation between models

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

ultimate_mcp_server · Install

Installation

  1. Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server
  1. Install dependencies:
pip install -e .
  1. For Claude Desktop integration, add to your claude_desktop_config.json:
{
  "mcpServers": {
    "ultimate-mcp": {
      "command": "python",
      "args": ["-m", "ultimate_mcp_server"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}
  1. Run the server:
python -m ultimate_mcp_server

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.