MCP Catalogs
Home

filesystem vs radar

Side-by-side comparison to help you pick between these two MCP servers.

filesystem
by modelcontextprotocol
radar
by skyhook-io
Stars★ 85,748★ 1,934
30d uses
Score7756
Official
Categories
File SystemDeveloper ToolsProductivity
Ops & InfraDeveloper ToolsMonitoring
LanguageTypeScriptTypeScript
Last committhis monththis month

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

radar · Summary

Radar is a Kubernetes UI with built-in MCP server for AI assistants to query cluster resources.

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

radar · Use cases

  • AI assistants querying Kubernetes cluster resources and topology
  • GitOps operations through AI assistants using MCP tools
  • AI-powered cluster monitoring and diagnostics

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.

radar · Install

# Install Radar
brew install skyhook-io/tap/radar

# Run Radar
kubectl radar

To use with Claude Desktop, add to claude_desktop_config.json:

{
  "mcpServers": {
    "radar": {
      "command": "radar",
      "args": ["--no-browser", "--no-mcp"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.