eraser-io-mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
eraser-io-mcp-server by buck-0x | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 21 | ★ 85,748 |
| 30d uses | — | — |
| Score | 42 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsProductivityAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 5 mo ago | this month |
eraser-io-mcp-server · Summary
A Python MCP server for rendering various diagram types using the Eraser API with customizable themes and output formats.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
eraser-io-mcp-server · Use cases
- Generate documentation diagrams in AI assistants that support MCP
- Create sequence diagrams and flowcharts directly from conversational prompts
- Produce cloud architecture diagrams with customizable themes
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
eraser-io-mcp-server · Install
Installation
Using pip:
pip install -e .Using uv:
uv pip install -e .Claude Desktop Configuration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"eraser": {
"command": "python",
"args": ["/path/to/eraser-io-mcp-server/main.py"]
}
}
}For HTTP transport:
{
"mcpServers": {
"eraser": {
"type": "streamable-http",
"url": "http://localhost:8000/mcp",
"headers": {
"Authorization": "Bearer your_auth_token"
}
}
}
}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