mcp_espn_ff vs fetch
Side-by-side comparison to help you pick between these two MCP servers.
mcp_espn_ff by KBThree13 | fetch by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 30 | ★ 85,748 |
| 30d uses | — | — |
| Score | 40 | 76 |
| Official | — | ✓ |
| Categories | AI / LLM ToolssportsOther | Web ScrapingAI / LLM ToolsProductivity |
| 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.
fetch · Summary
An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.
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
fetch · Use cases
- LLMs reading news articles and blogs
- Content analysis of web pages
- Retrieving information from public websites
- Chunked reading of large web documents
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
fetch · Install
Installation
**Using uv (recommended)** No specific installation needed. Use uvx to run the server directly:
uvx mcp-server-fetch**Using PIP** Install via pip:
pip install mcp-server-fetchThen run as:
python -m mcp_server_fetchClaude Desktop Configuration
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}