chronosphere-mcp
Verified Safeby chronosphereio
Overview
Provides a Model Context Protocol (MCP) server that exposes Chronosphere observability data (logs, metrics, traces, events) and configuration management capabilities as tools for AI applications and agents.
Installation
make run-chronomcp CHRONOSPHERE_ORG_NAME=<your org here> CHRONOSPHERE_API_TOKEN=<your api token here>Environment Variables
- CHRONOSPHERE_ORG_NAME
- CHRONOSPHERE_API_TOKEN
- USE_LOGSCALE
- LOGSCALE_API_TOKEN
- LOG_LEVEL
Security Notes
The server acts as a proxy for Chronosphere APIs. Input parameters for tool calls are parsed using explicit type-aware functions (e.g., `params.String`, `params.Int`), which generally reduces type-related vulnerabilities. Object and array parameters undergo `json.Unmarshal` which, while inherently a deserialization point, is applied to predefined Go structs, limiting arbitrary code execution risks. Authentication relies on standard bearer tokens or OAuth. No explicit `eval` or dynamic code execution patterns are found. The `mcpgen` tool is for code generation, not runtime server behavior. Security largely depends on the integrity of Chronosphere APIs and the robustness of Go's standard library `json` and `net/http` packages.
Similar Servers
mcp-k8s
A Kubernetes MCP (Model Control Protocol) server that enables natural language interaction with Kubernetes clusters and Helm for resource and release management.
mcpcat-typescript-sdk
MCPcat is an analytics platform designed for MCP server owners to capture user intentions and behavior patterns, offering session replay, trace debugging, and integration with existing observability tools.
mcp-servers
An MCP Server for robust web content fetching, anti-bot bypassing, intelligent caching, and LLM-powered information extraction from the open internet, designed for agent-building frameworks and MCP clients.
signoz-mcp-server
Provides AI assistants and LLMs with natural language access to SigNoz observability data, including metrics, traces, logs, alerts, and dashboards.