MCP Catalogs
Home

pubmed-mcp-server vs ultimate_mcp_server

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

pubmed-mcp-server
by cyanheads
ultimate_mcp_server
by Dicklesworthstone
Stars★ 97★ 149
30d uses
Score4985
Official
Categories
AI / LLM ToolsProductivityDeveloper Tools
AI / LLM ToolsBrowser AutomationFile System
LanguageTypeScriptPython
Last committhis month2 mo ago

pubmed-mcp-server · Summary

A comprehensive MCP server providing access to PubMed and NCBI E-utilities with 9 tools for research and citation management.

ultimate_mcp_server · Summary

Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.

pubmed-mcp-server · Use cases

  • Researchers can search PubMed and fetch article metadata for literature reviews
  • Students and academics can generate properly formatted citations in multiple styles
  • Medical professionals can explore MeSH terms to build precise search queries

ultimate_mcp_server · Use cases

  • Complex document processing and analysis with OCR and structured data extraction
  • Web automation and research across multiple sites with browser control
  • Cost-optimized AI workflows through intelligent task delegation between models

pubmed-mcp-server · Install

Installation

Using the public hosted server (recommended)

Configure your MCP client to connect to the public instance:

{
  "mcpServers": {
    "pubmed": {
      "type": "streamable-http",
      "url": "https://pubmed.caseyjhand.com/mcp"
    }
  }
}

Self-hosted installation

  1. Install with Bun:
bunx @cyanheads/pubmed-mcp-server@latest
  1. Or with npm:
npx -y @cyanheads/pubmed-mcp-server@latest
  1. Or with Docker:
docker run -i --rm ghcr.io/cyanheads/pubmed-mcp-server:latest

Claude Desktop configuration

Add to Claude Desktop config.json:

{
  "mcpServers": {
    "pubmed": {
      "command": "bunx",
      "args": ["@cyanheads/pubmed-mcp-server@latest"]
    }
  }
}

ultimate_mcp_server · Install

Installation

  1. Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server
  1. Install dependencies:
pip install -e .
  1. For Claude Desktop integration, add to your claude_desktop_config.json:
{
  "mcpServers": {
    "ultimate-mcp": {
      "command": "python",
      "args": ["-m", "ultimate_mcp_server"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}
  1. Run the server:
python -m ultimate_mcp_server
Comparison generated from public README + GitHub signals. Last updated automatically.