MCP Catalogs
Home

filesystem vs searchcraft-mcp-server

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

filesystem
by modelcontextprotocol
searchcraft-mcp-server
by searchcraft-inc
Stars★ 85,748★ 7
30d uses
Score7740
Official
Categories
File SystemDeveloper ToolsProductivity
Developer ToolsSearchAI / LLM Tools
LanguageTypeScriptTypeScript
Last committhis month3 mo ago

filesystem · Summary

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

searchcraft-mcp-server · Summary

A TypeScript MCP server that integrates Searchcraft's developer search engine for indexing documents, managing search operations, and creating search applications.

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

searchcraft-mcp-server · Use cases

  • Creating search applications from JSON datasets using natural language prompts
  • Managing document indexes and search configurations through MCP clients
  • Automating search analytics and performance monitoring workflows

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.

searchcraft-mcp-server · Install

Installation

npm install -g @searchcraft/mcp-server

Claude Desktop Configuration

Add to your Claude Desktop config.json:

{
  "mcpServers": {
    "searchcraft": {
      "command": "npx",
      "args": ["@searchcraft/mcp-server"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.