A Model Context Protocol (MCP) server that provides AI assistants and developers with read-only access to Istio service mesh resources in Kubernetes clusters. This server enables intelligent querying of Istio configurations, Virtual Services, Destination Rules, Gateways, and Envoy proxy configurations through a safe, non-destructive interface.
The Istio MCP Server bridges the gap between AI assistants and Istio service mesh operations by implementing the Model Context Protocol. It provides comprehensive tools for querying Istio resources including Virtual Services, Destination Rules, Gateways, and proxy configurations without any risk of modifying or deleting resources.
Key Benefits:
- π 100% Read-Only Operations - No destructive commands allowed
- π€ AI Assistant Friendly - Designed for MCP protocol integration
- π Comprehensive Istio Access - Covers all major Istio resource types
- π‘οΈ Safe by Design - Zero risk of accidental resource modifications
- π Multi-Protocol Support - STDIO, SSE, and HTTP protocols
- π Rich Observability - Access to Envoy proxy configurations and telemetry
- Virtual Services: Query Istio Virtual Services and routing rules
- Destination Rules: Query Istio Destination Rules and traffic policies
- Gateways: Query Istio Gateways and ingress configurations
- Service Entries: Query Istio Service Entries and external services
- Envoy Filters: Query Istio Envoy Filters and custom configurations
- Authorization Policies: Query Istio Authorization Policies
- Peer Authentications: Query Istio Peer Authentication policies
- Security Configurations: Access Istio security settings
- Telemetry Configurations: Query Istio telemetry settings
- Proxy Status: Get Envoy proxy health and status information
- Configuration Summaries: Comprehensive Istio configuration overviews
- Cluster Configuration: Access Envoy cluster configurations
- Listener Configuration: Access Envoy listener configurations
- Route Configuration: Access Envoy route configurations
- Endpoint Configuration: Access Envoy endpoint configurations
- Bootstrap Configuration: Access Envoy bootstrap configurations
- Full Configuration Dumps: Complete Envoy configuration snapshots
- Go 1.24+ for building from source
- Kubernetes cluster with Istio installed
- kubectl configured with appropriate permissions
- istioctl installed (for advanced proxy configuration features)
# Install via npm (recommended)
npm install -g istio-mcp-server
# Or build from source
git clone https://github.com/krutsko/istio-mcp-server.git
cd istio-mcp-server
make build
If you have npm installed, this is the fastest way to get started with istio-mcp-server
on Claude Desktop.
Open your claude_desktop_config.json
and add the mcp server to the list of mcpServers
:
{
"mcpServers": {
"istio": {
"command": "npx",
"args": [
"-y",
"istio-mcp-server@latest"
]
}
}
}
Install the Istio MCP server extension in VS Code Insiders manually by running the following command:
# For VS Code
code --add-mcp '{"name":"istio","command":"npx","args":["istio-mcp-server@latest"]}'
# For VS Code Insiders
code-insiders --add-mcp '{"name":"istio","command":"npx","args":["istio-mcp-server@latest"]}'
Install the Istio MCP server extension in Cursor by pressing the following link:
Alternatively, you can install the extension manually by editing the mcp.json
file:
{
"mcpServers": {
"istio-mcp-server": {
"command": "npx",
"args": ["-y", "istio-mcp-server@latest"]
}
}
}
Goose CLI is the easiest (and cheapest) way to get rolling with artificial intelligence (AI) agents.
If you have npm installed, this is the fastest way to get started with istio-mcp-server
.
Open your goose config.yaml
and add the mcp server to the list of mcpServers
:
extensions:
istio:
command: npx
args:
- -y
- istio-mcp-server@latest
# Run in STDIO mode (for MCP clients)
./bin/istio-mcp-server --kubeconfig ~/.kube/config
# Run SSE server on port 8080
./bin/istio-mcp-server --sse-port 8080
# Run HTTP server on port 8080
./bin/istio-mcp-server --http-port 8080
# Show all available options
./bin/istio-mcp-server --help
get-virtual-services
- List Virtual Services in a namespaceget-destination-rules
- List Destination Rules in a namespaceget-gateways
- List Gateways in a namespaceget-service-entries
- List Service Entries in a namespace
get-authorization-policies
- List Authorization Policies in a namespaceget-peer-authentications
- List Peer Authentications in a namespace
get-envoy-filters
- List Envoy Filters in a namespaceget-telemetry
- List Telemetry configurations in a namespaceget-istio-config
- Get comprehensive Istio configuration summary
get-proxy-clusters
- Get Envoy cluster configuration from a podget-proxy-listeners
- Get Envoy listener configuration from a podget-proxy-routes
- Get Envoy route configuration from a podget-proxy-endpoints
- Get Envoy endpoint configuration from a podget-proxy-bootstrap
- Get Envoy bootstrap configuration from a podget-proxy-config-dump
- Get full Envoy configuration dump from a podget-proxy-status
- Get proxy status information
The server supports various configuration options:
Option | Description | Default |
---|---|---|
--kubeconfig |
Path to kubeconfig file | ~/.kube/config |
--sse-port |
Start SSE server on specified port | Disabled |
--http-port |
Start HTTP server on specified port | Disabled |
--log-level |
Set logging level (0-9) | 0 |
--profile |
MCP profile to use | "full" |
π Security Note: This server operates in read-only mode by design. All operations are safe and non-destructive.
The Istio MCP Server follows clean architecture principles with clear separation of concerns:
istio-mcp-server/
βββ cmd/ # Application entrypoints and CLI commands
βββ pkg/
β βββ istio-mcp-server/ # Core application logic and CLI handling
β βββ istio/ # Istio client and resource management
β βββ mcp/ # MCP server implementation and tool definitions
β βββ version/ # Version information and build metadata
β βββ output/ # Output formatting and display utilities
βββ npm/ # NPM package distribution
# Install development dependencies
make deps
# Format code
make fmt
# Run linter
make lint
# Run tests
make test
# Clean build artifacts
make clean
# Build for all platforms
make build-all-platforms
# Test release process
make test-release
- Model Context Protocol - The protocol specification
- Istio - Service mesh platform
- Kubernetes - Container orchestration platform
- Envoy Proxy - High-performance proxy
This project is licensed under the MIT License - see the LICENSE file for details.
Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.