filesystem vs mcp-k8s
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | mcp-k8s by silenceper | |
|---|---|---|
| Stars | ★ 85,748 | ★ 145 |
| 30d uses | — | — |
| Score | 77 | 49 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Ops & InfraDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Go |
| Last commit | this month | 1 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp-k8s · Summary
Go-based MCP server for Kubernetes and Helm operations with granular control permissions.
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
mcp-k8s · Use cases
- Interactive Kubernetes resource management through natural language with LLM
- Automated operations scenarios including intelligent assistant for cluster management
- Development and testing support with quick prototype validation
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.
mcp-k8s · Install
Installation
- **Direct Download**: Download the binary for your platform from the [releases page](https://github.com/silenceper/mcp-k8s/releases)
- **Go Install**:
go install github.com/silenceper/mcp-k8s/cmd/mcp-k8s@latest- **Build from Source**:
git clone https://github.com/silenceper/mcp-k8s.git
cd mcp-k8s
make buildClaude Desktop Configuration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"mcp-k8s": {
"command": "/path/to/mcp-k8s",
"args": [
"--kubeconfig",
"/path/to/kubeconfig",
"--enable-create",
"--enable-delete",
"--enable-update",
"--enable-list"
]
}
}
}