fetch vs mcp-local-rag
Side-by-side comparison to help you pick between these two MCP servers.
fetch by modelcontextprotocol | mcp-local-rag by nkapila6 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 125 |
| 30d uses | — | — |
| Score | 76 | 47 |
| Official | ✓ | — |
| Categories | Web ScrapingAI / LLM ToolsProductivity | SearchAI / LLM Toolsprivacy |
| Language | TypeScript | Python |
| Last commit | this month | this month |
fetch · Summary
An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.
mcp-local-rag · Summary
Local RAG web search MCP server with 9+ search backends and no API keys required.
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-local-rag · Use cases
- Recent information retrieval for questions about current events
- Technical documentation research across multiple sources
- Privacy-conscious web search without tracking
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"]
}
}
}mcp-local-rag · Install
Installation
**Using Docker (recommended)**
{
"mcpServers": {
"mcp-local-rag": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-e",
"DOCKER_CONTAINER=true",
"ghcr.io/nkapila6/mcp-local-rag:v1.0.2"
]
}
}
}**Using uvx**
{
"mcpServers": {
"mcp-local-rag":{
"command": "uvx",
"args": [
"--python=3.10",
"--from",
"git+https://github.com/nkapila6/mcp-local-rag",
"mcp-local-rag"
]
}
}
}