kubernetes-mcp-server vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
kubernetes-mcp-server by containers | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1,593 | ★ 85,748 |
| 30d uses | — | — |
| Score | 55 | 77 |
| Official | — | ✓ |
| Categories | Ops & InfraDeveloper ToolsMonitoring | File SystemDeveloper ToolsProductivity |
| Language | Go | TypeScript |
| Last commit | this month | this month |
kubernetes-mcp-server · Summary
Go-based native MCP server for Kubernetes and OpenShift with direct API integration, supporting CRUD operations, pods, namespaces, Helm, and Tekton.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
kubernetes-mcp-server · Use cases
- AI assistants managing Kubernetes resources without leaving their interface
- Automated deployment troubleshooting and fixing in OpenShift environments
- Developers deploying applications directly from their IDE via MCP integration
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
kubernetes-mcp-server · Install
Installation
- **Via npm (for Claude Desktop)**:
Add to your claude_desktop_config.json: ``json { "mcpServers": { "kubernetes": { "command": "npx", "args": ["-y", "kubernetes-mcp-server@latest"] } } } ``
- **Via CLI**:
``bash npx kubernetes-mcp-server@latest # or using uvx uvx kubernetes-mcp-server@latest ``
- **Download binary** from [GitHub releases](https://github.com/containers/kubernetes-mcp-server/releases/latest)
filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.