concierge vs everything
Side-by-side comparison to help you pick between these two MCP servers.
concierge by concierge-hq | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 534 | ★ 85,748 |
| 30d uses | — | — |
| Score | 53 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
concierge · Summary
Concierge is a Python SDK that enhances MCP servers with progressive tool disclosure, workflow state management, and semantic search capabilities.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
concierge · Use cases
- E-commerce platforms with multi-step purchasing workflows
- Complex API management with hundreds of endpoints
- Multi-agent systems requiring state persistence across interactions
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
concierge · Install
Install Concierge SDK using pip:
pip install concierge-sdkFor new projects, scaffold with:
concierge init my-project
cd my-project
python main.pyTo wrap an existing FastMCP server:
from concierge import Concierge
from mcp.server.fastmcp import FastMCP
app = Concierge(FastMCP("my-server"))For Claude Desktop integration, add to config.json:
{
"mcpServers": {
"concierge": {
"command": "python",
"args": ["-m", "concierge", "run"],
"env": {}
}
}
}everything · 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