
CloudMonitor
STDIOCloudMonitor MCP server for querying and managing cloud monitoring data
CloudMonitor MCP server for querying and managing cloud monitoring data
CloudMonitor MCP Server Provide capabilities such as query metric data。
Version | v0.1.0 |
Description | CloudMonitor MCP Server Help you query and manage monitoring data more easily |
Category | CloudNative-Observability |
Label | Observability、Query Metric |
This MCP Server product provides the following Tools:
get_metric_data
: get_metric_dataSaaS
Query the metric data of the specified cloud product
Input:
{ "name": "get_metric_data", "description": "Query the specified metric data of the cloud product", "inputSchema": { "type": "object", "properties": { "region": { "default": "cn-beijing", "description": "target region(e.g. cn-beijing, cn-shanghai, cn-guangzhou)", "type": "string" }, "request": { "type": "object", "description": "The request body of the metric query includes the start and end times of the query, the namespace, metric information, etc", "properties": { "StartTime": { "description": "Query the start time in the format of RFC3339 or Unix timestamp", "type": "number" }, "EndTime": { "description": "Query the end time in the format of RFC3339 or Unix timestamp", "type": "number" }, "Namespace": { "description": "The cloud product namespace to which the metric belongs", "type": "string" }, "SubNamespace": { "description": "The cloud product subnamespace to which the metric belongs", "type": "string" }, "MetricName": { "description": "The Name of metric", "type": "string" }, "Period": { "description": "Aggregation time period", "type": "string" }, "Instances": { "description": "Instances information", "type": "array", "items": { "type": "object", "properties": { "type": "object", "Dimensions": { "description": "The specific dimension information under the instance", "type": "array", "items": { "type": "object", "properties": { "Name": { "type": "string" }, "Value": { "type": "string" } }, "required": [ "Name", "Value" ] } } } } } }, "required": [ "StartTime", "EndTime", "Namespace", "SubNamespace", "MetricName" ] } }, "required": [ "workspaceId", "query", "start", "end" ] } }
output:
Query the CpuTotal metric data of the Instance i-cnlfk3hz2nf95hjlz under the Instance subnamespace of the VCM_ECS product in the cn-beijing area in the recent 5 minutes.
sse: Ark,Python, Cline stdio: Python, Cline
https://console.volcengine.com/cloud-monitor
OAuth 2.0
Please obtain the environment variables in advance VOLCENGINE_ACCESS_KEY 和 VOLCENGINE_SECRET_KEY。
sse mode
{ "mcpServers": { "mcp-server-cloudmonitor-sse": { "command": "uvx", "args": [ "--from", "git+https://github.com/volcengine/mcp-server#subdirectory=server/mcp_server_cloudmonitor", "mcp-server-cloudmonitor-sse" ], "env": { "VOLCENGINE_ACCESS_KEY": "your volcengine access key", "VOLCENGINE_SECRET_KEY": "your volcengine secret key" } } } }
stdio mode
{ "mcpServers": { "mcp-server-cloudmonitor-stdio": { "command": "uvx", "args": [ "--from", "git+https://github.com/volcengine/mcp-server#subdirectory=server/mcp_server_cloudmonitor", "mcp-server-cloudmonitor-stdio" ], "env": { "VOLCENGINE_ACCESS_KEY": "your volcengine access key", "VOLCENGINE_SECRET_KEY": "your volcengine secret key" } } } }
volcengine/mcp-server is licensed under the MIT License.