MCP Catalogs
Home

istio-mcp-server vs filesystem

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

istio-mcp-server
by krutsko
filesystem
by modelcontextprotocol
Stars★ 1★ 85,748
30d uses
Score3477
Official
Categories
Developer ToolsOps & InfraAI / LLM Tools
File SystemDeveloper ToolsProductivity
LanguageGoTypeScript
Last commit8 mo agothis month

istio-mcp-server · Summary

MCP server providing read-only access to Istio service mesh resources in Kubernetes clusters.

filesystem · Summary

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

istio-mcp-server · Use cases

  • AI assistants analyzing service mesh configurations and routing rules
  • DevOps teams querying Istio resource status across multiple clusters
  • Debugging service connectivity issues through proxy configuration access

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

istio-mcp-server · Install

Installation

Via npm (recommended)

npm install -g istio-mcp-server

Building from source

git clone https://github.com/krutsko/istio-mcp-server.git
cd istio-mcp-server
make build

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "istio": {
      "command": "npx",
      "args": [
        "-y",
        "istio-mcp-server@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.

Comparison generated from public README + GitHub signals. Last updated automatically.