fetch vs NornicDB
Side-by-side comparison to help you pick between these two MCP servers.
fetch by modelcontextprotocol | NornicDB by orneryd | |
|---|---|---|
| Stars | ★ 85,748 | ★ 734 |
| 30d uses | — | — |
| Score | 76 | 52 |
| Official | ✓ | — |
| Categories | Web ScrapingAI / LLM ToolsProductivity | DatabaseKnowledge GraphAI / LLM Tools |
| Language | TypeScript | Go |
| 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.
NornicDB · Summary
NornicDB is a distributed graph+vector database with native MCP server support for AI applications.
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
NornicDB · Use cases
- Agent memory and Graph-RAG systems
- Knowledge graphs with temporal versioning
- AI applications requiring hybrid graph and vector operations
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"]
}
}
}NornicDB · Install
Docker Installation
# Apple Silicon
docker run -d --name nornicdb -p 7474:7474 -p 7687:7687 -v nornicdb-data:/data timothyswt/nornicdb-arm64-metal-bge:latest
# AMD64 / CPU only
docker run -d --name nornicdb -p 7474:7474 -p 7687:7687 -v nornicdb-data:/data timothyswt/nornicdb-amd64-cpu-bge:latestFrom Source
git clone https://github.com/orneryd/NornicDB.git
cd NornicDB
go build -o nornicdb ./cmd/nornicdb
./nornicdb serveClaude Desktop Configuration
To use the MCP server with Claude Desktop, add to your claude_desktop_config.json:
{
"mcpServers": {
"nornicdb": {
"command": "nornicdb",
"args": ["mcp"]
}
}
}