Fire in da houseTop Tip:Paying $100+ per month for Perplexity, MidJourney, Runway, ChatGPT and other tools is crazy - get all your AI tools in one site starting at $15 per month with Galaxy AI Fire in da houseCheck it out free

metoro-mcp-server

MCP.Pizza Chef: metoro-io

Metoro MCP Server is a high-performance, scalable server implementation designed to expose structured data and functionality to MCP clients. It acts as a bridge between diverse data sources and AI models, enabling real-time context feeding and safe interaction within AI-enhanced workflows. Built with Go, it supports secure, observable, and scoped model interactions, making it ideal for developers building agents, copilots, and AI workflows that require dynamic environment awareness and multi-step reasoning.

Use This MCP server To

Expose structured data to AI models in real time Integrate diverse data sources for AI context feeding Enable secure and scoped model interactions Support multi-step reasoning in AI workflows Bridge AI models with external APIs and services Facilitate AI-enhanced agent and copilot development

README

Metoro MCP Logo

GitHub stars GitHub forks GitHub issues GitHub pull requests GitHub license GitHub contributors GitHub last commit GoDoc Go Report Card Tests

metoro-mcp-server

This repository contains th Metoro MCP (Model Context Protocol) Server. This MCP Server allows you to interact with your Kubernetes cluster via the Claude Desktop App!

What is MCP (Model Context Protocol)?

You can read more about the Model Context Protocol here: https://modelcontextprotocol.io

But in a nutshell

The Model Context Protocol (MCP) is an open protocol that enables seamless integration between LLM applications and external data sources and tools. Whether you’re building an AI-powered IDE, enhancing a chat interface, or creating custom AI workflows, MCP provides a standardized way to connect LLMs with the context they need.

What is Metoro?

Metoro is an observability platform designed for microservices running in Kubernetes and uses eBPF based instrumentation to generate deep telemetry without code changes. The data that is generated by the eBPF agents is sent to Metoro's backend to be stored and in the Metoro frontend using our apis.

This MCP server exposes those APIs to an LLM so you can ask your AI questions about your Kubernetes cluster.

Demo

Demo.mp4

How can I use Metoro MCP Server?

  1. Install the Claude Desktop App.
  2. Make sure you have Golang installed. brew install go for mac or sudo apt-get install golang for ubuntu.
  3. Clone the repository: git clone https://github.com/metoro-io/metoro-mcp-server.git
  4. Navigate to the repository directory: cd metoro-mcp-server
  5. Build the server executable: go build -o metoro-mcp-server

If you already have a Metoro Account:

Copy your auth token from your Metoro account in Settings -> Users Settings. Create a file in ~/Library/Application Support/Claude/claude_desktop_config.json with the following contents:

{
  "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"
       }
    }
  }
}

If you don't have a Metoro Account:

No worries, you can still play around using the Live Demo Cluster. The included token is a demo token, publicly available for anyone to use. Create a file in ~/Library/Application Support/Claude/claude_desktop_config.json with the following contents:

{
  "mcpServers": {
    "metoro-mcp-server": {
      "command": "<your path to Metoro MCP server go executable>/metoro-mcp-server",
      "args": [],
      "env": {
          "METORO_AUTH_TOKEN" : "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJjdXN0b21lcklkIjoiOThlZDU1M2QtYzY4ZC00MDRhLWFhZjItNDM2ODllNWJiMGUzIiwiZW1haWwiOiJ0ZXN0QGNocmlzYmF0dGFyYmVlLmNvbSIsImV4cCI6MTgyMTI0NzIzN30.7G6alDpcZh_OThYj293Jce5rjeOBqAhOlANR_Fl5auw",
          "METORO_API_URL": "https://demo.us-east.metoro.io"
       }
    }
  }
}
  1. Once you are done editing claude_desktop_config.json save the file and restart Claude Desktop app.
  2. You should now see the Metoro MCP Server in the dropdown list of MCP Servers in the Claude Desktop App. You are ready to start using Metoro MCP Server with Claude Desktop App!

Built with

This server is built on top of our Golang MCP SDK.

metoro-mcp-server FAQ

How do I install Metoro MCP Server?
You can install Metoro MCP Server by cloning its GitHub repository and following the build instructions provided in the README. It requires Go environment setup.
What programming language is Metoro MCP Server written in?
Metoro MCP Server is implemented in Go, ensuring high performance and easy deployment.
Can Metoro MCP Server handle multiple data sources?
Yes, it is designed to integrate and expose multiple structured data sources to MCP clients simultaneously.
How does Metoro MCP Server ensure secure model interactions?
It implements scoped and observable interaction principles, limiting model access to authorized data and actions only.
Is Metoro MCP Server compatible with different LLM providers?
Yes, it is provider-agnostic and works seamlessly with OpenAI, Anthropic Claude, Google Gemini, and other LLMs.
Where can I find documentation for Metoro MCP Server?
Comprehensive documentation is available on its GitHub repository and GoDoc page linked in the README.
How frequently is Metoro MCP Server updated?
The project is actively maintained with regular commits, issue tracking, and community contributions visible on GitHub.
Can I contribute to Metoro MCP Server development?
Yes, contributions are welcome via GitHub pull requests following the contribution guidelines.