MCP Catalogs
Home

bgpt-mcp vs fetch

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

bgpt-mcp
by connerlambden
fetch
by modelcontextprotocol
Stars★ 20★ 85,748
30d uses
Score4376
Official
Categories
AI / LLM ToolsresearchDatabase
Web ScrapingAI / LLM ToolsProductivity
LanguageJavaScriptTypeScript
Last commit1 mo agothis month

bgpt-mcp · Summary

A remote MCP server for searching scientific papers with full-text experimental data extraction.

fetch · Summary

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

bgpt-mcp · Use cases

  • Literature reviews with real experimental data analysis
  • Evidence synthesis by grounding AI responses in actual study findings
  • Research assistance by finding papers based on methodology or outcomes

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

bgpt-mcp · Install

Installation Options

**Option A: Remote Connection (Recommended)**

For Claude Desktop, add to claude_desktop_config.json:

{
  "mcpServers": {
    "bgpt": {
      "url": "https://bgpt.pro/mcp/sse"
    }
  }
}

For other MCP clients like Cursor, add to .cursor/mcp.json or equivalent config file using the same structure.

**Option B: Via npx**

{
  "mcpServers": {
    "bgpt": {
      "command": "npx",
      "args": ["-y", "bgpt-mcp"]
    }
  }
}

**Option C: Install Globally**

npm install -g bgpt-mcp

Then add to MCP config:

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

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.