
APMPlus
STDIOMCP server for APMPlus application performance monitoring and observability analysis
MCP server for APMPlus application performance monitoring and observability analysis
The MCP Server officially launched by the Application Performance Monitoring service can accurately convert natural language into observable analysis statements. It efficiently analyzes observable data including metrics, traces, and logs, helping you comprehensively ensure the entire lifecycle of your applications and improve the efficiency of troubleshooting and problem-solving.
Version | v0.1.0 |
---|---|
Description | The APMPlus MCP Server helps you comprehensively ensure the entire lifecycle of your applications |
Category | Observability |
Tags | Observability, Traces, Metrics, Logs, Performance Monitoring |
This MCP Server product provides the following Tools (capabilities):
Query the alert rules for APMPlus - Server Monitoring in a specified region.
region_id
: [str] Region IDkeyword
: [str] Search keywordpage_number
: [int] Page number for paginationpage_size
: [int] Page size for paginationQuery the notification group information for APMPlus - Server Monitoring in a specified region.
region_id
: [str] Region IDkeyword
: [str] Search keywordpage_number
: [int] Page number for paginationpage_size
: [int] Page size for paginationQuery the metrics for APMPlus - Server Monitoring in a specified region.
region_id
: [str] Region IDquery
: [str] Metric expression, in PromQL formatstart_time
: [int] Start time, in secondsend_time
: [int] End time, in secondsYou can use cline, cursor, claude desktop, or other terminals that support MCP server calls.
https://console.volcengine.com/apmplus-server
Obtain your AK/SK from volcengine, then add the AK/SK to the MCP server configuration, or configure them in the .env
file in your working directory with the following format:
VOLCENGINE_ACCESS_KEY=your_volcengine_ak VOLCENGINE_SECRET_KEY=your_volcengine_sk ## Using uv Add the following configuration to your MCP settings file: ```json { "mcpServers": { "mcp-server-apmplus": { "command": "uvx", "args": [ "--from", "git+https://github.com/volcengine/mcp-server.git#subdirectory=server/mcp_server_apmplus", "mcp-server-apmplus" ], "env": { "VOLCENGINE_ACCESS_KEY": "your_volcengine_ak", "VOLCENGINE_SECRET_KEY": "your_volcengine_sk" } } } }
Or clone the repository locally and start it from the local code repository:
{ "mcpServers": { "mcp-server-apmplus": { "command": "uv", "args": [ "--directory", "path/to/src/mcp_server_apmplus", "run", "server.py" ], "env": { "VOLCENGINE_ACCESS_KEY": "your_volcengine_ak", "VOLCENGINE_SECRET_KEY": "your_volcengine_sk" } } } }