emcee vs everything
Side-by-side comparison to help you pick between these two MCP servers.
emcee by mattt | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 321 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | Go | TypeScript |
| Last commit | 7 mo ago | this month |
emcee · Summary
emcee converts OpenAPI specifications to MCP servers, enabling Claude Desktop and other apps to connect to web APIs.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
emcee · Use cases
- Connect Claude Desktop to custom web services via their OpenAPI specifications
- Enable AI assistants to interact with internal APIs without custom MCP development
- Transform existing API documentation into AI-accessible tools quickly
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
emcee · Install
Install emcee using Homebrew:
brew install mattt/tap/emceeConfigure Claude Desktop:
{
"mcpServers": {
"my-api": {
"command": "emcee",
"args": ["https://api.example.com/openapi.json"]
}
}
}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