istio-mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
istio-mcp-server by krutsko | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1 | ★ 85,748 |
| 30d uses | — | — |
| Score | 34 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsOps & InfraAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Go | TypeScript |
| Last commit | 8 mo ago | this month |
istio-mcp-server · Summary
MCP server providing read-only access to Istio service mesh resources in Kubernetes clusters.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
istio-mcp-server · Use cases
- AI assistants analyzing service mesh configurations and routing rules
- DevOps teams querying Istio resource status across multiple clusters
- Debugging service connectivity issues through proxy configuration access
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
istio-mcp-server · Install
Installation
Via npm (recommended)
npm install -g istio-mcp-serverBuilding from source
git clone https://github.com/krutsko/istio-mcp-server.git
cd istio-mcp-server
make buildClaude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"istio": {
"command": "npx",
"args": [
"-y",
"istio-mcp-server@latest"
]
}
}
}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