MCP Catalogs
Home

MetaSearchMCP vs filesystem

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

MetaSearchMCP
by gefsikatsinelou
filesystem
by modelcontextprotocol
Stars★ 44★ 85,748
30d uses
Score4677
Official
Categories
SearchAI / LLM ToolsDeveloper Tools
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last committhis monththis month

MetaSearchMCP · Summary

A metasearch MCP server that aggregates results from multiple providers with normalized JSON output.

filesystem · Summary

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

MetaSearchMCP · Use cases

  • LLM agents performing web research with normalized search results across multiple providers
  • Building custom search applications with fallback to different search engines
  • Academic research workflows combining Google Scholar, arXiv, and other academic sources

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

MetaSearchMCP · Install

Installation

One-command local install:

python scripts/install.py

Manual install:

git clone https://github.com/gefsikatsinelou/MetaSearchMCP
cd MetaSearchMCP
pip install -e ".[dev]"

Claude Desktop Configuration

Add this to your Claude Desktop config.json:

{
  "mcpServers": {
    "MetaSearchMCP": {
      "command": "metasearchmcp-mcp",
      "env": {
        "ALLOW_UNSTABLE_PROVIDERS": "true",
        "SERPBASE_API_KEY": "your_key",
        "SERPER_API_KEY": "your_key"
      }
    }
  }
}

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.

Comparison generated from public README + GitHub signals. Last updated automatically.