mcp-server vs fetch
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server by carsten-l | fetch by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 2 | ★ 85,748 |
| 30d uses | — | — |
| Score | 26 | 76 |
| Official | — | ✓ |
| Categories | DatabaseAI / LLM ToolsOther | Web ScrapingAI / LLM ToolsProductivity |
| Language | JavaScript | TypeScript |
| Last commit | 10 mo ago | this month |
mcp-server · Summary
An MCP server that converts text questions about music festivals to database queries and returns plain text responses.
fetch · Summary
An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.
mcp-server · Use cases
- Answering questions about music festival schedules and band performances
- Converting natural language queries to database operations
- Demonstrating MCP's tool calling capabilities for data access
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-server · Install
npm installAdd to Claude Desktop configuration:
{
"mcpServers": {
"music-festival": {
"command": "node",
"args": ["path/to/mcp-server.js"]
}
}
}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"]
}
}
}