MCP Catalogs
Home

fetch vs yantrikdb-server

Side-by-side comparison to help you pick between these two MCP servers.

fetch
by modelcontextprotocol
yantrikdb-server
by yantrikos
Stars★ 85,748★ 143
30d uses
Score7650
Official
Categories
Web ScrapingAI / LLM ToolsProductivity
AI / LLM ToolsKnowledge GraphDatabase
LanguageTypeScriptRust
Last committhis monththis month

fetch · Summary

An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.

yantrikdb-server · Summary

Cognitive memory database for AI agents that consolidates duplicates, detects contradictions, and fades stale memories via temporal decay.

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

yantrikdb-server · Use cases

  • Long-term memory management for AI agents to avoid context window overflow
  • Conflict detection and resolution in multi-conversation AI systems
  • Personalized AI assistants that learn user preferences over time
  • Knowledge consolidation for enterprise document management systems

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-fetch

Then run as:

python -m mcp_server_fetch

Claude Desktop Configuration

{
  "mcpServers": {
    "fetch": {
      "command": "uvx",
      "args": ["mcp-server-fetch"]
    }
  }
}

yantrikdb-server · Install

Quick Start with MCP

pip install yantrikdb-mcp

Add to your MCP client config (typically ~/.claude.json or .mcp.json):

{
  "mcpServers": {
    "yantrikdb": {
      "command": "yantrikdb-mcp"
    }
  }
}

For shared memory across machines:

{
  "mcpServers": {
    "yantrikdb": {
      "command": "yantrikdb-mcp",
      "env": {
        "YANTRIKDB_SERVER_URL": "http://node1:7438,http://node2:7438",
        "YANTRIKDB_TOKEN": "ydb_your_database_token"
      }
    }
  }
}

As a Network Server

docker run -p 7438:7438 ghcr.io/yantrikos/yantrikdb:latest
Comparison generated from public README + GitHub signals. Last updated automatically.