chronosphere-mcp
MCP server for chronosphere
Documentation
Chronosphere MCP Server
MCP server for Chronosphere. Serves tools for fetching logs, metrics, traces, events as well as select entities.
This project uses semver for release versions. We have not graduated to 1.0, so breaking
changes may occur for minor version bumps.
MCP config with popular hosts (claude desktop, cursor)
Remote Server
The easiest way to use the MCP server is using our remote hosted server:
Auth
You can use either a Chronosphere API token or OAuth
with the Chronosphere MCP server. To use MCP with OAuth, the MCP client must support OAuth.
OAuth support is new and have not been tested with all clients. If it does not work for you, please raise the issue to
Chronosphere support in slack with the following information:
1. MCP client you're using (e.g. VS code, codex, cursor, etc)
2. What steps you took to attempt authentication
3. What error you're seeing.
Header-based configuration
Some MCP hosts let you attach custom HTTP headers to requests sent to the MCP server. The Chronosphere MCP server supports
the following user-facing headers.
Disable tools (`X-Chrono-MCP-Disable-Tools`)
Use this header to hide specific tools from the tool list exposed to your MCP client.
- Format: comma-separated list of MCP tool names (the Tool Name column in the Available Tools table)
- Example value: `query_logs_range,render_prometheus_range_query`
- Notes: whitespace is ignored; unknown tool names are ignored
Enable writes (`X-Chrono-MCP-Enable-Writes`)
Write tools are hidden and cannot be called by default. The server operator must first permit writes with
`server.tools.enableWrites: true`. HTTP and SSE clients must additionally set this header to `true`; the header cannot
override a disabled server setting. Other values do not enable writes.
Stdio has no request headers, so the server setting alone enables writes for that transport. The Chronosphere credentials
used by the server must still authorize the underlying API operation.
Cursor/VSCode
{
"mcpServers": {
"chronosphere": {
"url": "https://.chronosphere.io/api/mcp/mcp",
"headers": {
"Authorization": "Bearer ",
"X-Chrono-MCP-Disable-Tools": ""
}
}
}
}This configuration should work for Cursor and VSCode. Leave out the `headers` section to use OAuth instead of a Chronosphere API token.
Remove `X-Chrono-MCP-Disable-Tools` to expose all tools.
More details for VSCode here and Cursor here
Claude code
Adding chronosphere MCP server to claude code
claude mcp add -t http \
-H "Authorization: Bearer ${CHRONOSPHERE_API_TOKEN}" \
-H "X-Chrono-MCP-Disable-Tools: " \
chronosphere "https://${CHRONOSPHERE_ORG_NAME}.chronosphere.io/api/mcp/mcp"You can leave out the Authorization header if you are using OAuth. Once you're in claude type `/mcp` and select the server to login to trigger the OAuth flow.
Remove the `X-Chrono-MCP-Disable-Tools` header to expose all tools.
More details here
Codex CLI
experimental_use_rmcp_client = true
[mcp_servers.chronosphere]
url = "https://.chronosphere.io/api/mcp/mcp"
bearer_token = ""For oauth login, you must enable `experimental_use_rmcp_client = true` and then run `codex mcp login chronosphere`
More details here
Gemini CLI
CHRONOSPHERE_ORG_NAME=
CHRONOSPHERE_API_TOKEN=
gemini mcp add chronosphere "https://${CHRONOSPHERE_ORG_NAME}.chronosphere.io/api/mcp/mcp" \
-H "Authorization: Bearer ${CHRONOSPHERE_API_TOKEN}" \
-H "X-Chrono-MCP-Disable-Tools: "
# Drop the -H authorization header option if you want to use OAuth.See Gemini MCP docs for more information.
Building from source
First build the binary
make chronomcp{
"mcpServers": {
"chronosphere-mcp": {
"command": "/bin/chronomcp",
"args": [
"-c",
"/config.yaml"
],
"env": {
"CHRONOSPHERE_ORG_NAME": "",
"CHRONOSPHERE_API_TOKEN": ""
}
}
}
}Developing
Running the server
Authentication to Chronosphere
This MCP server uses the same authentication methods as chronoctl. By default, the Makefile expects the API token to be stored in `.chronosphere_api_token`.
Run the mcp server
make run-chronomcp CHRONOSPHERE_ORG_NAME= CHRONOSPHERE_API_TOKEN=Debugging MCP Tools
The MCP project provides an inspector useful for directly calling tools APIs. To use:
1. Start the MCP server with streamable http transport `make run-chronomcp CONFIG_FILE=./config.http.yaml CHRONOSPHERE_ORG_NAME=`
1. Run `npx @modelcontextprotocol/inspector node build/index.js`.
1. Open http://localhost:6274/#resources , fill in `http://0.0.0.0:8081/mcp` in the URL, with transport type Streamable HTTP.
Available Tools
| Group | Tool Name | Description |
|---|---|---|
| configapi | get_classic_dashboard | Get classic-dashboards resource |
| configapi | get_dashboard | Get dashboards resource |
| configapi | get_drop_rule | Get drop-rules resource |
| configapi | get_mapping_rule | Get mapping-rules resource |
| configapi | get_monitor | Get monitors resource |
| configapi | get_notification_policy | Get notification-policies resource |
| configapi | get_recording_rule | Get recording-rules resource |
| configapi | get_rollup_rule | Get rollup-rules resource |
| configapi | get_slo | Get slos resource |
| configapi | list_classic_dashboards | List classic-dashboards resources |
| configapi | list_dashboards | List dashboards resources |
| configapi | list_drop_rules | List drop-rules resources |
| configapi | list_mapping_rules | List mapping-rules resources |
| configapi | list_monitors | List monitors resources |
| configapi | list_notification_policies | List notification-policies resources |
| configapi | list_recording_rules | List recording-rules resources |
| configapi | list_rollup_rules | List rollup-rules resources |
| configapi | list_slos | List slos resources |
| configapi | update_dashboard | Replace a dashboard identified by slug. Use dry_run to validate without saving. |
| events | get_events_metadata | List properties you can query on events |
| events | list_events | List events from a given query |
| events | list_events_label_values | List values for a given label name |
| logs | get_log | Get a full log message by its ID. The ID is the unique identifier for the log. |
| logs | get_log_histogram | Get histogram of logs from a given query |
| logs | list_log_field_names | List field names of logs |
| logs | list_log_field_values | List field values of logs |
| logs | query_logs_range | Execute a range query for logs. This endpoint returns logs as either timeSeries or gridData. It may return a large amount of data, so be careful putting the result of this direction into context. U... |
| metrics | list_prometheus_label_names | Returns the list of label names (keys) available on metrics that match the given selectors. Use this tool when you need to discover what labels are available on specific metrics or services. Exampl... |
| metrics | list_prometheus_label_values | Returns the list of values for a specific label name, optionally filtered by selectors. Use this tool when you know the label name and want to discover what values it has across your metrics. Commo... |
| metrics | list_prometheus_series | Returns the complete time series (full label sets with all key-value pairs) that match the given selectors. Each result shows the exact combination of labels for an active time series. Use this too... |
| metrics | list_prometheus_series_metadata | |
| metrics | query_prometheus_instant | Evaluates a Prometheus instant query at a single point in time |
| metrics | query_prometheus_range | Executes a Prometheus PromQL query over a specified time range and returns time series data points as JSON. Supports standard PromQL syntax plus Chronosphere custom functions: - cardinality_estimat... |
| metrics | render_prometheus_range_query | Evaluates a Prometheus expression query over a range of time and renders it as a PNG image. |
| metric_usage | list_metric_usages_by_label_name | Lists metric usage statistics grouped by label name. Use this to find unused or high-cardinality labels that could be dropped. |
| metric_usage | list_metric_usages_by_metric_name | Lists metric usage statistics grouped by metric name. Use this to find unused or underutilized metrics that could be dropped to reduce costs. |
| metric_usage | list_rule_evaluations | Lists rule evaluation issues for monitors and recording rules. Use this to identify monitors or recording rules that are failing or having problems. |
| monitors | list_monitor_statuses | Lists the current status of monitors in Chronosphere. Returns monitor statuses with alert states and optional signal and series details. |
| traces | list_traces | List traces from a given query |
*Note: To regenerate this table after tool updates, run: `make tools-gen && go run scripts/generate-tools-table.go`*
Releases
We use goreleaser to manage releases.
You'll need a github token and put it in a .github_release_token file.
The token needs at least the following permissions
- `content: write`
- `issues: write`
To create a new release, first create a tag:
git tag vX.Y.Z
git push origin vX.Y.ZThen run the following command to perform a dry run of the release:
// Code blockmake release-dry-run
verify the release looks good, then run:
make release
// Code blockFrequently asked questions
What is chronosphere-mcp?
chronosphere-mcp is MCP server for chronosphere
How do I install chronosphere-mcp?
Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.
Is chronosphere-mcp open source?
Yes — it is hosted on GitHub at https://github.com/chronosphereio/chronosphere-mcp and has 8 stars.
Related MCP tools
eBPF-powered network observability for Kubernetes. Indexes L4/L7 traffic with full K8s context, decrypts TLS without keys. Queryable by AI agents via MCP and humans via dashboard.
GOWA - WhatsApp REST API with support for UI, Multi Account, Webhooks, and MCP, and Chatwoot. Built with Golang for efficient memory use.
The missing open-source Kubernetes UI with a built-in MCP server for AI agents. See what's broken, why, and what changed. Issues, Topology, event timeline, Helm, GitOps, live service traffic, and cluster audits - all in one Go binary.
mcp-language-server gives MCP enabled clients access semantic tools like get definition, references, rename, and diagnostics.
The Terraform MCP Server provides seamless integration with Terraform ecosystem, enabling advanced automation and interaction capabilities for Infrastructure as Code (IaC) development.
Run MATLAB® using AI applications with the official MATLAB MCP Server from MathWorks®. This MCP server for MATLAB supports a wide range of coding agents like Claude Code® and Visual Studio® Code.
Run your own MCP server? See who uses it and what to fix.
Measure it with TrackMCP