filesystem vs k8s-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | k8s-mcp-server by reza-gholizade | |
|---|---|---|
| Stars | ★ 85,748 | ★ 156 |
| 30d uses | — | — |
| Score | 77 | 50 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Developer ToolsOps & InfraAI / LLM Tools |
| Language | TypeScript | Go |
| Last commit | this month | this month |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
k8s-mcp-server · Summary
A Go-based MCP server that provides comprehensive Kubernetes cluster management tools through MCP protocol.
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
k8s-mcp-server · Use cases
- AI assistants managing Kubernetes clusters through natural language commands
- Web applications providing Kubernetes management interfaces via MCP integration
- DevOps automation tools interacting with clusters through MCP protocol
- Training environments for Kubernetes operations without direct CLI access
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.
k8s-mcp-server · Install
Installation
From Source
git clone https://github.com/reza-gholizade/k8s-mcp-server.git
cd k8s-mcp-server
go mod download
go build -o k8s-mcp-server main.goUsing Docker
docker pull ginnux/k8s-mcp-server:latest
docker run -p 8080:8080 -v ~/.kube/config:/home/appuser/.kube/config:ro ginnux/k8s-mcp-server:latestClaude Desktop Configuration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"kubernetes": {
"command": "k8s-mcp-server",
"args": ["--mode", "stdio"],
"env": {
"KUBECONFIG": "/path/to/your/kubeconfig"
}
}
}
}