MCP Catalogs
Home

filesystem vs deep-research-mcp

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

filesystem
by modelcontextprotocol
deep-research-mcp
by pinkpixel-dev
Stars★ 85,748★ 27
30d uses
Score7744
Official
Categories
File SystemDeveloper ToolsProductivity
AI / LLM ToolsSearchProductivity
LanguageTypeScriptJavaScript
Last committhis month2 mo ago

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

deep-research-mcp · Summary

A research-focused MCP server using Tavily APIs to gather and structure web information for LLM documentation generation.

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

deep-research-mcp · Use cases

  • Comprehensive topic research for creating detailed technical documentation
  • Automated report generation with structured web content analysis
  • Background information gathering for AI agents performing complex tasks

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

deep-research-mcp · Install

Installation

**Via Smithery (Recommended for Claude Desktop)**

npx -y @smithery/cli install @pinkpixel/dev-deep-research-mcp --client claude

**Using NPX**

npx @pinkpixel/deep-research-mcp

**Global Installation**

npm install -g @pinkpixel/deep-research-mcp
deep-research-mcp

**Claude Desktop Configuration**

{
  "mcpServers": {
    "deep-research": {
      "command": "npx",
      "args": [
        "-y",
        "@pinkpixel/deep-research-mcp"
      ],
      "env": {
        "TAVILY_API_KEY": "tvly-YOUR_API_KEY"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.