everything vs drawio-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | drawio-mcp-server by simonkurtz-MSFT | |
|---|---|---|
| Stars | ★ 85,748 | ★ 71 |
| 30d uses | — | — |
| Score | 77 | 48 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsProductivityAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
drawio-mcp-server · Summary
Draw.io MCP server enabling programmatic diagram generation with 700+ Azure icons and batch operations.
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
drawio-mcp-server · Use cases
- Automatically generate architecture diagrams from AI descriptions
- Create technical documentation with embedded diagrams
- Rapid prototyping of system architectures
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-everythingdrawio-mcp-server · Install
Installation
From Source
deno run --allow-net --allow-read --allow-env src/index.tsClaude Desktop
Edit claude_desktop_config.json:
{
"mcpServers": {
"drawio": {
"command": "deno",
"args": ["run", "--allow-net", "--allow-read", "--allow-env", "/path/to/drawio-mcp-server/src/index.ts"]
}
}
}Docker
docker pull simonkurtzmsft/drawio-mcp-server:latest
docker run -d --name drawio-mcp-server -p 8080:8080 simonkurtzmsft/drawio-mcp-server:latest