Aerostack
electrical_services

Datadog MCP Server — Hosted for Any AI Agent

MCP Server shield Key Required

Dashboards, monitors, logs, metrics, incidents, SLOs, APM traces via Datadog's official MCP

aerostack @aerostack verified
v1.0.0 MIT Updated May 13, 2026
robot_2

Use with AI AssistantsMCP

Connect Claude, Cursor, or any MCP-compatible client — then call tools directly

① Add This MCP Server

Paste into your AI client config — then all its tools are available instantly.

.claude/mcp.json
{
  "mcpServers": {
    "datadog-observability": {
      "url": "https://mcp.aerostack.dev/s/aerostack/mcp-datadog",
      "headers": {
        "Authorization": "Bearer YOUR_AEROSTACK_TOKEN"
      }
    }
  }
}

Replace YOUR_AEROSTACK_TOKEN with your API token from the dashboard.

② Call a Tool

Ask your AI assistant to call a specific tool, or send raw JSON-RPC:

Natural Language Prompt

“Use the list_dashboards tool to list all datadog dashboards with title, description, author, layout type, and modification timestamps

Using a Workspace?

Add this MCP to your Workspace — your team shares one token, secrets are stored securely, and every AI agent in the workspace can call it without per-user setup.

add_circleAdd to Workspace

The Datadog MCP server gives AI agents access to your observability data — querying metrics, searching logs, and inspecting monitors. Hosted on Aerostack as a single URL for any MCP-compatible agent, it lets assistants investigate incidents, surface anomalies, and answer "what is happening in production" without opening a dashboard.

description Overview

Datadog Observability MCP

Official proxy MCP — Dashboards, monitors, logs, metrics, incidents, SLOs, APM traces via Datadog's official MCP

Live endpoint: https://mcp.aerostack.dev/s/aerostack/mcp-datadog


Overview

Datadog Observability is a proxy MCP server that forwards requests directly to the official Datadog MCP endpoint at https://mcp.datadoghq.com/api/unstable/mcp-server/mcp. All tools are maintained by Datadog — new tools are available immediately without any Aerostack update.

Type: Proxy (hosted by Datadog)
Auth: API Key + Application Key via DD_API_KEY and DD_APP_KEY

Regional endpoints: EU: mcp.datadoghq.eu, US3: mcp.us3.datadoghq.com, US5: mcp.us5.datadoghq.com, AP1: mcp.ap1.datadoghq.com, GovCloud: mcp.ddog-gov.com

Available Tools

  • list_dashboards — List all Datadog dashboards with title, description, author, and layout type
  • get_dashboard — Retrieve a specific dashboard by ID with all widgets and configuration
  • search_logs — Search and filter log entries by query, time range, and facets
  • list_monitors — List all monitors with name, type, status, and alert conditions
  • query_metrics — Query metric timeseries data with aggregation, grouping, and formulas

Configuration

Variable Required Description How to Get
DD_API_KEY Yes Datadog API Key app.datadoghq.com → Organization Settings → API Keys → New Key
DD_APP_KEY Yes Datadog Application Key app.datadoghq.com → Organization Settings → Application Keys → New Key

Setup

Add to Aerostack Workspace
  1. Go to app.aerostack.dev/workspacesCreate Workspace
  2. Inside your workspace → Add Server → search "Datadog Observability"
  3. Enter your DD_API_KEY and DD_APP_KEY when prompted — stored encrypted, injected automatically

Once added, every AI agent in your workspace can query Datadog tools automatically.

Usage

Example Prompts
"Show me all dashboards tagged with 'production'"
"Search logs for errors in the web service from the last hour"
"List all monitors that are currently alerting"
Direct API Call
curl -X POST https://mcp.aerostack.dev/s/aerostack/mcp-datadog \
  -H 'Content-Type: application/json' \
  -H 'X-Mcp-Secret-DD-API-KEY: your-api-key' \
  -H 'X-Mcp-Secret-DD-APP-KEY: your-app-key' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_logs","arguments":{"query":"service:web status:error"}}}'

License

MIT

terminal Tools (5)

Available tools on this MCP server. Each tool can be called directly from any AI agent.

terminal
list_dashboards #1

List all Datadog dashboards with title, description, author, layout type, and modification timestamps

terminal
get_dashboard #2

Retrieve a specific dashboard by ID with all widgets, template variables, and layout configuration

terminal
search_logs #3

Search and filter log entries by query, time range, and facets with aggregation support

terminal
list_monitors #4

List all Datadog monitors with name, type, status, query, and alert conditions

terminal
query_metrics #5

Query Datadog metric timeseries data with aggregation, grouping, and formulas

Details

upgrade Version 1.0.0
gavel License MIT
wifi Transport http-sse
lock Access Key Required
category Category Devops
terminal Tools 5

Publisher

aerostack
@aerostack verified

Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.

Tags

Browse more servers

Frequently asked questions

What is the Datadog MCP server and what can it do? +

The Datadog MCP server is hosted on Aerostack and exposes these tools to your AI agent: `list_dashboards`, `get_dashboard`, `search_logs`, `list_monitors`, `query_metrics`. You get one hosted URL — no self-hosting — that works from Claude, Cursor, ChatGPT, Gemini, VS Code, or any MCP-compatible client, and you can share it with your team or combine it with other MCP servers in a workspace.

Is the Datadog MCP server hosted, or do I have to run it myself? +

It's hosted on Aerostack's edge infrastructure — you don't deploy or maintain anything. Add it to a workspace and you get one authenticated URL, with secrets encrypted, that any AI agent or editor can connect to. Use it solo or share the same URL across your whole team.

Which AI agents and editors can use the Datadog MCP server? +

Any MCP client: Claude and Claude Code, Cursor, ChatGPT, Gemini, Windsurf, Cline, VS Code, and custom agents. Because it's one hosted URL, the same Datadog MCP server works everywhere — and you can compose it with other MCP servers, skills, and functions behind a single workspace URL.

How do I install the Datadog MCP server in Claude Desktop? +

Add the following to your Claude Desktop config (`claude_desktop_config.json`): ```json { "mcpServers": { "@aerostack/mcp-datadog": { "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-datadog"] } } } ``` Then restart Claude Desktop and the tools will appear automatically.

How do I use the Datadog MCP server in Cursor? +

In Cursor, open **Settings → MCP** and add: ```json { "name": "@aerostack/mcp-datadog", "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-datadog"] } ``` Save and reload Cursor. The MCP tools will be available in Agent mode.

Does Datadog MCP require authentication? +

Yes. Datadog uses Bearer token authentication. Set your token as a workspace secret in the Aerostack dashboard.