MCP Catalogs
Home

ultimate_mcp_server vs cursor-notebook-mcp

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

ultimate_mcp_server
by Dicklesworthstone
cursor-notebook-mcp
by jbeno
Stars★ 149★ 157
30d uses
Score8545
Official
Categories
AI / LLM ToolsBrowser AutomationFile System
Developer ToolsFile SystemAI / LLM Tools
LanguagePythonPython
Last commit2 mo ago6 mo ago

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.

cursor-notebook-mcp · Summary

MCP server enabling AI agents to interact with Jupyter Notebook files through cell manipulation and metadata editing.

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

cursor-notebook-mcp · Use cases

  • AI agents editing Jupyter notebooks within Cursor IDE to analyze data and create machine learning tutorials
  • Automated notebook validation and cleanup in development workflows
  • Converting notebooks to Python scripts or HTML for documentation purposes

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

cursor-notebook-mcp · Install

Installation

From PyPI:

pip install cursor-notebook-mcp

From source:

git clone https://github.com/jbeno/cursor-notebook-mcp.git
cd cursor-notebook-mcp
python -m venv .venv
source .venv/bin/activate  # On Windows use `.venv\Scripts\activate`
pip install -e .

Server Configuration (Cursor)

Create or update your ~/.cursor/mcp.json:

{
  "mcpServers": {
    "notebook_mcp": {
      "url": "http://127.0.0.1:8080/mcp"
    }
  }
}

Then run the server:

cursor-notebook-mcp --transport streamable-http --allow-root /path/to/your/notebooks --host 127.0.0.1 --port 8080
Comparison generated from public README + GitHub signals. Last updated automatically.