mcp_espn_ff vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp_espn_ff by KBThree13 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 30 | ★ 85,748 |
| 30d uses | — | — |
| Score | 40 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolssportsOther | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 5 mo ago | this month |
mcp_espn_ff · Summary
ESPN Fantasy Football MCP server providing league data, team rosters, and player stats through tools.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp_espn_ff · Use cases
- Ask an AI assistant about your fantasy football team's performance and player stats
- Get matchup information and league standings through natural language queries
- Manage your fantasy football roster using voice commands to an AI assistant
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
mcp_espn_ff · Install
Installation
Prerequisites
- Python 3.10 or higher
uvpackage manager- Claude Desktop for the best experience
Usage with Claude Desktop
- Update the Claude Desktop config:
- MacOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Include reference to the MCP server:
```json { "mcpServers": { "espn-fantasy-football": { "command": "uv", "args": [ "--directory", "/absolute/path/to/directory", "run", "espn_fantasy_server.py" ] } } }
- Restart Claude Desktop
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