feyod-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
feyod-mcp by jeroenvdmeer | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1 | ★ 85,748 |
| 30d uses | — | — |
| Score | 31 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDatabaseOther | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 10 mo ago | this month |
feyod-mcp · Summary
MCP server for Feyenoord football data queries via natural language interface.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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-mcpLocal 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 ../mcpClaude 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"
}
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything