everything vs zig-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | zig-mcp by zig-wasm | |
|---|---|---|
| Stars | ★ 85,748 | ★ 158 |
| 30d uses | — | — |
| Score | 77 | 48 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | 2 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
zig-mcp · Summary
MCP server providing up-to-date documentation for Zig programming language standard library and builtin functions.
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
zig-mcp · Use cases
- AI assistants helping with Zig programming can access accurate, version-specific documentation
- Developers working with Zig can get real-time information about standard library functions and builtin functions
- Code generation and completion tools can leverage accurate Zig documentation for better suggestions
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-everythingzig-mcp · Install
Installation
Claude Code
Using npx (Node.js)
claude mcp add zig-docs -- npx -y zig-mcp@latestUsing bunx (Bun)
claude mcp add zig-docs -- bunx zig-mcp@latestClaude Desktop
Add this JSON configuration to your MCP settings file:
{
"mcpServers": {
"zig-docs": {
"command": "npx",
"args": ["-y", "zig-mcp@latest"]
}
}
}Remote Documentation (Optional)
For downloading documentation from ziglang.org:
{
"mcpServers": {
"zig-docs": {
"command": "npx",
"args": ["-y", "zig-mcp@latest", "--doc-source", "remote", "--version", "master"]
}
}
}