drio
Open app

mcp-deepresearch

Source

local mcp server perplexity

Catalog onlyCatalog onlySTDIO

Overview

mcp-deepresearch is a local server project designed to enhance the perplexity of the MCP (Model Control Protocol) for research purposes.

To use mcp-deepresearch, clone the repository from GitHub and set up the local server environment as per the instructions provided in the README file.

  • Local server setup for MCP - Enhanced perplexity handling - Open-source with MIT license
  1. Researching model control protocols in a local environment.
  2. Testing and developing applications that require MCP.
  3. Experimenting with perplexity adjustments in machine learning models.

Add to your AI client

Use these steps to connect mcp-deepresearch in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-deepresearch-hirokidaichi": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-deepresearch-hirokidaichi"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-deepresearch-hirokidaichi": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-deepresearch-hirokidaichi"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-deepresearch-hirokidaichi": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-deepresearch-hirokidaichi"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-deepresearch-hirokidaichi": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-deepresearch-hirokidaichi"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-deepresearch-hirokidaichi": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-deepresearch-hirokidaichi"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-deepresearch-hirokidaichi": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-deepresearch-hirokidaichi"
      ]
    }
  }
}