meilisearch-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
meilisearch-mcp by meilisearch | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 186 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | SearchAI / LLM ToolsDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 4 mo ago | this month |
meilisearch-mcp · Summary
Meilisearch MCP server enables LLMs to interact with Meilisearch search engine through natural language commands.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
meilisearch-mcp · Install
Installation
Using pip
pip install meilisearch-mcpUsing uvx (recommended)
uvx -n meilisearch-mcpConfiguration 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:latesteverything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything