Home / MCP / Metoro MCP Server
Exposes Metoro's Kubernetes telemetry APIs via MCP so you can query cluster data from an LLM.
Configuration
View docs{
"mcpServers": {
"metoro_mcp": {
"command": "<your path to Metoro MCP server go executable>/metoro-mcp-server",
"args": [],
"env": {
"METORO_AUTH_TOKEN": "<your auth token>",
"METORO_API_URL": "https://us-east.metoro.io"
}
}
}
}Metoro MCP Server lets you query and explore your Kubernetes telemetry data from Metoro via the Model Context Protocol. It exposes Metoro’s observability APIs so you can ask an LLM-powered client questions about cluster telemetry, events, and telemetry-derived insights in a structured, context-aware way.
You connect your MCP client to Metoro MCP Server and start asking questions about your Kubernetes cluster. The server runs locally and reads authentication data to securely access Metoro’s telemetry APIs. You can query real-time metrics, events, and context about your cluster, then refine questions to drill into specific namespaces, deployments, or time ranges.
Prerequisites you need before installing the server.
1. Install the Claude Desktop App on your machine.
2. Ensure Go is installed on your system.
3. Build the server executable from source.
4. Configure Claude Desktop to connect to Metoro MCP Server using your auth token and API URL.
5. Start using the Metoro MCP Server from the Claude Desktop App.
{
"mcpServers": {
"metoro-mcp-server": {
"command": "<your path to Metoro MCP server go executable>/metoro-mcp-server",
"args": [],
"env": {
"METORO_AUTH_TOKEN" : "<your auth token>",
"METORO_API_URL": "https://us-east.metoro.io"
}
}
}
}Build the server and run it as a local process. The command to start the server is the full path to the Metoro MCP Server executable, followed by any necessary environment variables.
Example placeholder start command from a local setup:
``
<your path to Metoro MCP server go executable>/metoro-mcp-server
``
Then provide required environment variables as shown in the configuration snippet above.
- Keep your METORO_AUTH_TOKEN secure. Do not share tokens in public spaces. Treat the token as a password for your Metoro account.
- Use the recommended API URL corresponding to your Metoro workspace (can be production or demo). Ensure the URL you configure points to a trusted endpoint.