MCP Catalogs
Home

Mobus vs fetch

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

Mobus
by mobus-ai
fetch
by modelcontextprotocol
Stars★ 24★ 85,748
30d uses
Score4376
Official
Categories
AI / LLM ToolsDatabaseSearch
Web ScrapingAI / LLM ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis monththis month

Mobus · Summary

MCP server for searching, previewing, and analyzing datasets across 20+ platforms.

fetch · Summary

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

Mobus · Use cases

  • Search for datasets across multiple platforms using specific criteria like licenses or formats
  • Preview and evaluate datasets before downloading them
  • Generate citations in various formats for academic papers
  • Trace citation graphs and research lineages
  • Compare multiple datasets side by side

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

Mobus · Install

Installation

Claude Desktop

Add Mobus to Claude in under a minute:

  1. Open claude.ai (or Claude Desktop/Mobile)
  2. Go to Settings → Connectors
  3. Click Add custom connector
  4. Name it 'Mobus' and paste this URL: https://mcp.mobus.ai/mcp
  5. Start a new chat and try searching for datasets

Local Installation

git clone https://github.com/hrantvirabyan/Mobus.git
cd Mobus
npm install
cp .env.example .env   # fill in any keys you have (all optional)
npm run build

Claude Desktop JSON Configuration

{
  "mcpServers": {
    "mobus": {
      "command": "node",
      "args": ["/absolute/path/to/Mobus/dist/main.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-fetch

Then run as:

python -m mcp_server_fetch

Claude Desktop Configuration

{
  "mcpServers": {
    "fetch": {
      "command": "uvx",
      "args": ["mcp-server-fetch"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.