drio
Open app

metoro-mcp-server

Source

Mirror of

Catalog onlyCatalog onlySTDIO

Overview

The Metoro MCP Server is an implementation of the Model Context Protocol (MCP) that allows users to interact with Kubernetes clusters through the Claude Desktop App. It facilitates seamless integration between LLM applications and external data sources, enabling users to query their Kubernetes environments effectively.

  1. Install the Claude Desktop App.
  2. Ensure you have Golang installed.
  3. Clone the repository: git clone https://github.com/metoro-io/metoro-mcp-server.git
  4. Build the server executable: go build -o metoro-mcp-server.
  5. Configure your auth token and API URL in the claude_desktop_config.json file.
  • Enables interaction with Kubernetes clusters via LLMs. - Provides APIs for querying Kubernetes telemetry data. - Supports both authenticated and demo usage.
  1. Monitoring Kubernetes cluster performance.
  2. Querying telemetry data for microservices.
  3. Integrating AI capabilities into Kubernetes management workflows.

Add to your AI client

Use these steps to connect metoro-mcp-server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "metoro-io-metoro-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-metoro-io-metoro-mcp-server-mcp-mirror"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "metoro-io-metoro-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-metoro-io-metoro-mcp-server-mcp-mirror"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "metoro-io-metoro-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-metoro-io-metoro-mcp-server-mcp-mirror"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "metoro-io-metoro-mcp-server-mcp-mirror": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-metoro-io-metoro-mcp-server-mcp-mirror"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "metoro-io-metoro-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-metoro-io-metoro-mcp-server-mcp-mirror"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "metoro-io-metoro-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-metoro-io-metoro-mcp-server-mcp-mirror"
      ]
    }
  }
}