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 | — | — |
| Score | 43 | 76 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDatabaseSearch | Web ScrapingAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this 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:
- Open claude.ai (or Claude Desktop/Mobile)
- Go to Settings → Connectors
- Click Add custom connector
- Name it 'Mobus' and paste this URL:
https://mcp.mobus.ai/mcp - 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 buildClaude 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-fetchThen run as:
python -m mcp_server_fetchClaude Desktop Configuration
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}