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:
-
Log in to the Dash0 app and open your organization settings.
-
Click on
Endpoints>MCPand copy the endpoint URL for your region. -
Click on
Auth Tokensand create or reuse an existing token withAll permissionson the Dataset(s) that you want to work with. -
Add the following configuration to your AI assistant or MCP client (the configuration schema may differ depending on the implementation):
{ "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:
{ "mcpServers": { "dash0": { "command": "npx", "args": [ "-y", "mcp-remote", "{{endpoint_mcp}}", "--header", "Authorization: Bearer ${DASH0_AUTH_TOKEN}" ], "env": { "DASH0_AUTH_TOKEN": "{{token}}" } } } }
Recommend MCP Servers 💡
mcp-video-extraction
An MCP server that extracts text from videos and audio files using OpenAI's Whisper model, supporting various platforms like YouTube, Bilibili, TikTok, and Instagram.
quarkus-mcp-server
A Quarkus extension to easily implement MCP server features with SSE and STDIO transports
google-search
An MCP server integrating with Google's Custom Search JSON API for web search capabilities.
google-pse-mcp
An MCP server integrating Google Programmable Search Engine (PSE) API to provide web search tools for MCP clients
opencti-mcp
A Model Context Protocol (MCP) server that provides seamless integration with OpenCTI platform for querying threat intelligence data
@GongRzhe/Office-Word-MCP-Server
A Model Context Protocol (MCP) server that enables AI assistants to create, read, and manipulate Microsoft Word documents through a standardized interface.