trackmcp
Back to directory

MCP server for Dash0

2 starsOthers Updated Jun 30, 2026

Documentation

Dash0 MCP server

The official Model Context Protocol (MCP) server for Dash0.

Enables AI assistants to navigate your OpenTelemetry resources, investigate incidents and query metrics, logs and traces on Dash0.

The Dash0 MCP server is remote and uses the Streamable HTTP transport.

Usage

See the Dash0 Integrations Hub for instructions on how to connect with the most popular AI agents and coding assistants like Claude, Cline, Cursor and Windsurf.

For custom integrations or integrating with other MCP clients, follow the instructions below:

1. Log in to the Dash0 app and open your organization settings.

2. Click on `Endpoints` > `MCP` and copy the endpoint URL for your region.

3. Click on `Auth Tokens` and create or reuse an existing token with `All permissions` on the Dataset(s) that you want to work with.

4. Add the following configuration to your AI assistant or MCP client (the configuration schema may differ depending on the implementation):

json
{
     "mcpServers": {
       "dash0": {
         "type": "streamableHttp",
         "url": "{{endpoint_mcp}}",
         "headers": {
           "Authorization": "Bearer {{token}}"
         }
       }
     }
   }

For clients that don't support remote MCP servers or that haven't implemented the Streamable HTTP transport yet, you can use a configuration like the following instead:

json
{
     "mcpServers": {
       "dash0": {
         "command": "npx",
         "args": [
           "-y",
           "mcp-remote",
           "{{endpoint_mcp}}",
           "--header",
           "Authorization: Bearer ${DASH0_AUTH_TOKEN}"
         ],
         "env": {
           "DASH0_AUTH_TOKEN": "{{token}}"
         }
       }
     }
   }

Frequently asked questions

What is mcp-dash0?

mcp-dash0 is MCP server for Dash0

How do I install mcp-dash0?

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 mcp-dash0 open source?

Yes — it is hosted on GitHub at https://github.com/dash0hq/mcp-dash0 and has 2 stars.

Related MCP tools

Run your own MCP server? See who uses it and what to fix.

Measure it with TrackMCP