Metoro Mcp 服务器
概览
什么是 Metoro MCP 服务器?
Metoro MCP 服务器是一个开源项目,旨在促进各种微服务的管理和操作。它为开发人员提供了一个强大的框架,以高效地部署、管理和扩展他们的应用程序。该服务器专注于性能、可扩展性和易用性,使其成为现代应用程序架构的理想选择。
Metoro MCP 服务器的特点
- 微服务架构:支持微服务的开发和部署,允许模块化应用程序设计。
- 可扩展性:轻松扩展以处理增加的负载,确保应用程序在高流量下保持响应。
- 开源:作为开源项目,它允许开发人员参与其开发并根据需要进行定制。
- 用户友好的界面:提供简单直观的界面来管理服务,使所有技能水平的开发人员都能轻松使用。
- 强大的文档:提供全面的文档,帮助用户有效理解和利用服务器。
如何使用 Metoro MCP 服务器
- 安装:首先从 GitHub 克隆代码库。使用以下命令:
git clone https://github.com/metoro-io/metoro-mcp-server.git
- 配置:根据您的环境配置服务器设置。这包括设置数据库连接、服务端点和其他必要参数。
- 部署:使用提供的部署脚本或通过您首选的 CI/CD 管道部署您的微服务。
- 管理:使用网页界面或命令行工具管理您的服务,监控性能,并根据需要进行扩展。
常见问题解答
Metoro MCP 服务器支持哪些编程语言?
Metoro MCP 服务器主要使用 JavaScript 和 Node.js 构建,但它可以与用各种编程语言编写的服务集成。
是否有社区支持?
是的,Metoro MCP 服务器周围有一个活跃的社区。您可以通过 GitHub 讨论、论坛和社交媒体渠道找到支持。
我可以为项目做贡献吗?
当然可以!欢迎贡献。您可以在 GitHub 代码库上提交问题、功能请求或拉取请求。
如何报告错误?
如果您遇到错误,请在 Metoro MCP 服务器代码库的 GitHub 问题页面上报告,提供尽可能多的细节以帮助开发人员解决问题。
Metoro MCP 服务器是否有许可证?
是的,Metoro MCP 服务器根据 MIT 许可证授权,允许免费使用、修改和分发。
详情
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
https://github.com/user-attachments/assets/b3f21e9a-45b8-4c17-8d8c-cff560d8694f
How can I use Metoro MCP Server?
- Install the Claude Desktop App.
- Make sure you have Golang installed.
brew install go
for mac orsudo apt-get install golang
for ubuntu. - Clone the repository:
git clone https://github.com/metoro-io/metoro-mcp-server.git
- Navigate to the repository directory:
cd metoro-mcp-server
- 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"
}
}
}
}
- Once you are done editing
claude_desktop_config.json
save the file and restart Claude Desktop app. - 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.
Server配置
{
"mcpServers": {
"metoro-mcp-server": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/metorial/mcp-container--metoro-io--metoro-mcp-server--metoro-mcp-server",
"./out"
],
"env": {
"METORO_AUTH_TOKEN": "metoro-auth-token",
"METORO_API_URL": "metoro-api-url"
}
}
}
}