filesystem vs kubectl-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | kubectl-mcp-server by rohitg00 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 888 |
| 30d uses | — | — |
| Score | 77 | 54 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Ops & InfraDeveloper ToolsSecurity |
| Language | TypeScript | Python |
| Last commit | this month | 1 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
kubectl-mcp-server · Summary
A comprehensive MCP server for Kubernetes infrastructure management through natural language.
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
kubectl-mcp-server · Use cases
- Troubleshooting pod crashes and network issues using natural language
- Deploying and scaling applications with simple commands
- Auditing security configurations across namespaces
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.
kubectl-mcp-server · Install
Quick Start with npx (Recommended)
npx -y kubectl-mcp-serverInstall with Python
pip install kubectl-mcp-server[ui]Claude Desktop Configuration
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"kubernetes": {
"command": "npx",
"args": ["-y", "kubectl-mcp-server"]
}
}
}