MCP Catalogs
Home

mcp-hubspot vs ultimate_mcp_server

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

mcp-hubspot
by baryhuang
ultimate_mcp_server
by Dicklesworthstone
Stars★ 122★ 149
30d uses
Score4485
Official
Categories
E-commerceAI / LLM ToolsProductivity
AI / LLM ToolsBrowser AutomationFile System
LanguagePythonPython
Last commit6 mo ago2 mo ago

mcp-hubspot · Summary

MCP server for HubSpot CRM integration with vector storage and caching to overcome API limitations.

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.

mcp-hubspot · Use cases

  • AI-powered CRM data analysis and reporting
  • Creating contacts and companies from external sources like LinkedIn
  • Semantic search across CRM data for better customer insights

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

mcp-hubspot · Install

Installation

**Via Smithery (recommended)**

npx -y @smithery/cli@latest install mcp-hubspot --client claude

**Using Docker**

docker run -e HUBSPOT_ACCESS_TOKEN=your_token buryhuang/mcp-hubspot:latest

**Claude Desktop Configuration**

{
  "mcpServers": {
    "hubspot": {
      "command": "docker",
      "args": [
        "run", "-i", "--rm",
        "-e", "HUBSPOT_ACCESS_TOKEN=your_token",
        "-v", "/path/to/storage:/storage",
        "buryhuang/mcp-hubspot:latest"
      ]
    }
  }
}

**Prerequisites**

  • HubSpot access token with these scopes:

- crm.objects.contacts (read/write) - crm.objects.companies (read/write) - sales-email-read

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.