drio
Open app

metoro-mcp-server

Source

Metoro MCP Server

Catalog onlyCatalog onlySTDIO

Overview

Metoro MCP Server is a server application that enables interaction with Kubernetes clusters using the Model Context Protocol (MCP). It allows users to seamlessly connect LLM applications to external data and tools, enhancing their AI capabilities.

  1. Install the Claude Desktop App.
  2. Ensure Golang is installed on your system.
  3. Clone the repository from GitHub.
  4. Build the server executable.
  5. Configure your Metoro account settings or use a demo token in the configuration file for the Claude app.
  • Integration with Kubernetes clusters for real-time data querying. - Utilizes the Model Context Protocol for connecting LLM applications. - Provides an observability platform for microservices using eBPF instrumentation.
  1. Monitoring Kubernetes cluster health and performance.
  2. Enhancing AI-driven tools and applications with real-time Kubernetes data.
  3. Enabling deep telemetry insights for microservices without code changes.

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-mcp-server-metoro-io": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-metoro-mcp-server-metoro-io"
      ]
    }
  }
}

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-mcp-server-metoro-io": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-metoro-mcp-server-metoro-io"
      ]
    }
  }
}

Claude Code

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

.mcp.json (project root)

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

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-mcp-server-metoro-io": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-metoro-mcp-server-metoro-io"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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