MCP Cursor

Enhance your development workflow with AI-powered MCP tools and extensions for Cursor IDE.

Product

  • MCP Servers
  • Getting Started
  • Documentation
  • Open Source

Resources

  • MCP Specification
  • Cursor IDE
  • MCP GitHub
  • Contributing

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy
Made withfor the developer community
© 2026 MCP Cursor. All rights reserved.
MCP Logo
MCP Cursor
IntroductionMCPs
IntroductionMCPs
3D MCP Cursor Visualization
  1. Home
  2. Servers
  3. Deep Research MCP
Deep Research MCP Logo

Deep Research MCP

Model Context Protocol Integration

Overview

Integrates multiple AI agents to conduct in-depth research on complex topics with customizable tones, providing detailed progress reporting and error handling.

Deep Research

Integrates multiple AI agents to conduct in-depth research on complex topics with customizable tones, providing detailed progress reporting and error handling.

Installation Instructions


README: https://github.com/JoshuaLelon/deep-research-mcp

Deep Research MCP

This repository provides a multi-agent research framework using Python and MCP (Message Control Protocol). The default entrypoint is mcp_server.py, which sets up a FastMCP server named Deep Research and exposes a tool named deep_research.

Setup

  1. Clone the Repository:

    git clone https://github.com/yourusername/deep-research-mcp.git
    cd deep-research-mcp
    
  2. Create/Populate Your .env File:

    cp .env.example .env
    # Then edit the new .env file to fill in your secrets and environment variables
    # For example:
    # OPENAI_API_KEY=sk-123-yourkey
    # Additional environment variables can be placed here
    
  3. Install Dependencies:

    pip install -r multi_agents/requirements.txt
    
  4. Edit your claude_desktop_config.json file to include the following:

    {
        "mcpServers": {
            "deep-research-mcp": {
                "command": "path/to/your/python/interpreter",
                "args": [
                    "/path/to/this/project/deep-research-mcp/mcp_server.py"
                ]
            }
        }
    }
    
  5. Run the MCP Server:

    python mcp_server.py
    

    This starts the FastMCP tool server locally. From here, any MCP-compatible client or the CLI can invoke the deep_research tool.

Project Overview

  • multi_agents
    • agents: Contains the various AI agents (ResearchAgent, EditorAgent, etc.).
    • memory: Typed dictionaries to store research and draft states.
    • main.py: Core logic to load tasks and orchestrate agents.
    • README.md: Additional instructions on usage, file output settings, etc.
  • mcp_server.py: Main FastMCP server file (entrypoint).
  • utils: Shared functions and enums used across the codebase.
  • .gitignore, requirements.txt, etc.: Standard setup files.

Below is a copy of the multi_agents/README.md in a tree-like structure for reference:

multi_agents/
│
├─ README.md
│   └─ (Documentation on file output vs. direct return)
│
├─ agents/
│   ├─ __init__.py
│   ├─ browser.py
│   ├─ researcher.py
│   ├─ editor.py
│   ├─ writer.py
│   ├─ publisher.py
│   └─ ... (other agents)
│
├─ memory/
│   ├─ __init__.py
│   ├─ draft.py
│   └─ research.py
│
├─ main.py
├─ __init__.py
└─ requirements.txt

Featured MCPs

Github MCP - Model Context Protocol for Cursor IDE

Github

This server provides integration with Github's issue tracking system through MCP, allowing LLMs to interact with Github issues.

Sequential Thinking MCP - Model Context Protocol for Cursor IDE

Sequential Thinking

An MCP server implementation that provides a tool for dynamic and reflective problem-solving through a structured thinking process. Break down complex problems into manageable steps, revise and refine thoughts as understanding deepens, and branch into alternative paths of reasoning.

Puppeteer MCP - Model Context Protocol for Cursor IDE

Puppeteer

A Model Context Protocol server that provides browser automation capabilities using Puppeteer. This server enables LLMs to interact with web pages, take screenshots, execute JavaScript, and perform various browser-based operations in a real browser environment.