MCP Catalogs
Home

meilisearch-mcp vs filesystem

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

meilisearch-mcp
by meilisearch
filesystem
by modelcontextprotocol
Stars★ 186★ 85,748
30d uses
Score5077
Official
Categories
SearchAI / LLM ToolsDeveloper Tools
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit4 mo agothis month

meilisearch-mcp · Summary

Meilisearch MCP server enables LLMs to interact with Meilisearch search engine through natural language commands.

filesystem · Summary

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

meilisearch-mcp · Use cases

  • Enabling AI assistants to search and manage product catalogs through natural conversation
  • Allowing developers to interact with Meilisearch without learning the API directly
  • Integrating Meilisearch search capabilities into AI-powered 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

meilisearch-mcp · Install

Installation

Using pip
pip install meilisearch-mcp
Using uvx (recommended)
uvx -n meilisearch-mcp
Configuration for Claude Desktop

Add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "meilisearch": {
      "command": "uvx",
      "args": ["-n", "meilisearch-mcp"]
    }
  }
}
Using Docker
docker pull getmeili/meilisearch-mcp:latest

docker run -it \
  -e MEILI_HTTP_ADDR=http://your-meilisearch:7700 \
  -e MEILI_MASTER_KEY=your-master-key \
  getmeili/meilisearch-mcp:latest

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.