flux-operator vs everything
Side-by-side comparison to help you pick between these two MCP servers.
flux-operator by controlplaneio-fluxcd | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 628 | ★ 85,748 |
| 30d uses | — | — |
| Score | 51 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsOps & InfraAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Go | TypeScript |
| Last commit | this month | this month |
flux-operator · Summary
Flux MCP server bridges AI assistants with Kubernetes clusters for GitOps operations via natural language.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
flux-operator · Use cases
- Analyzing and troubleshooting GitOps deployments through natural language queries
- Managing Flux CD resources and configurations via AI assistants
- Monitoring cluster state and reconciliation status using conversational prompts
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
flux-operator · Install
Installing Flux MCP Server
The Flux MCP Server is integrated with the Flux Operator. First, install the Flux Operator:
helm install flux-operator oci://ghcr.io/controlplaneio-fluxcd/charts/flux-operator \
--namespace flux-systemThen configure the FluxInstance to include the necessary components. The MCP server is automatically enabled when the operator is installed.
For Claude Desktop, add to your config.json:
{
"mcpServers": {
"flux": {
"command": "npx",
"args": ["@fluxcd/mcp-server"]
}
}
}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