← 返回 Skills 市场
bcwilsondotcom

Datadog MCP

作者 Brandon Wilson · GitHub ↗ · v1.1.1 · MIT-0
cross-platform ✓ 安全检测通过
229
总下载
0
收藏
0
当前安装
3
版本数
在 OpenClaw 中安装
/install datadog-mcp
功能描述
Datadog observability via the official MCP Server — query logs, traces, metrics, monitors, incidents, dashboards, hosts, synthetics, and workflows through Da...
使用说明 (SKILL.md)

Datadog MCP Server

Query Datadog observability data through the official MCP Server.

Requirements

Variable Required Description
DD_API_KEY Datadog API key (Organization Settings → API Keys)
DD_APP_KEY Datadog Application key (Organization Settings → Application Keys)
DD_SITE Optional Datadog site (default: datadoghq.com)

Setup

Option A: Remote MCP Server (Recommended)

Datadog hosts the MCP server — no local install needed.

mcporter add datadog \
  --transport http \
  --url "https://mcp.datadoghq.com/api/unstable/mcp-server/mcp" \
  --header "DD-API-KEY:$DD_API_KEY" \
  --header "DD-APPLICATION-KEY:$DD_APP_KEY"

To select specific toolsets, append ?toolsets=logs,metrics,monitors to the URL.

Option B: Local stdio MCP Server

Use the community datadog-mcp-server npm package:

npx datadog-mcp-server \
  --apiKey "$DD_API_KEY" \
  --appKey "$DD_APP_KEY" \
  --site "$DD_SITE"

Option C: Claude Code / Codex CLI

claude mcp add --transport http datadog-mcp \
  "https://mcp.datadoghq.com/api/unstable/mcp-server/mcp?toolsets=core"

Available Toolsets

Toolset Tools Description
core General platform tools Default — always included
logs get_logs Search and retrieve log entries
traces list_spans, get_trace Investigate distributed traces
metrics list_metrics, get_metrics Query timeseries metrics data
monitors get_monitors Retrieve monitor configs and status
hosts list_hosts Infrastructure host information
incidents list_incidents, get_incident Incident management
dashboards list_dashboards Discover dashboards
synthetics Synthetic test tools Synthetic monitoring tests
workflows Workflow automation tools List, inspect, execute workflows

Select toolsets via URL query parameter: ?toolsets=logs,metrics,monitors,incidents

Usage Examples

  • Error investigation: "Show me error logs from service:api-gateway in the last hour" — uses get_logs with query filters
  • Monitor status: "Are there any triggered monitors for the payments service?" — uses get_monitors with service tag filter
  • Metrics query: "Show me p99 latency for web-app over the last 4 hours" — uses list_metrics then get_metrics for timeseries
  • Incident response: "List active incidents" — uses list_incidents
  • Trace investigation: "Find slow spans for service:checkout taking over 5s" — uses list_spans with duration filter

Operational Runbooks

  • references/incident-response.md — step-by-step incident triage via MCP
  • references/troubleshooting.md — log/trace/metric correlation patterns
  • references/api-reference.md — complete tool parameters and response schemas

Multi-Site Support

Region Site
US1 (default) datadoghq.com
US3 us3.datadoghq.com
US5 us5.datadoghq.com
EU datadoghq.eu
AP1 ap1.datadoghq.com
US1-FED ddog-gov.com

For the remote MCP server, the site is determined by your API key's org. For the local server, pass --site.

Security Notes

  • API keys grant read access to your Datadog org — treat them as secrets
  • Application keys inherit the permissions of the user who created them
  • Use scoped application keys with minimal permissions for production
  • The remote MCP server runs on Datadog infrastructure — data does not leave Datadog
  • The local stdio server runs on your machine — API calls go directly to Datadog's API
安全使用建议
This skill appears to do what it claims: connect your agent to Datadog's MCP server. Before installing, consider: (1) Treat DD_API_KEY and DD_APP_KEY as secrets — store them in a secrets manager and use scoped application keys with minimal read permissions. (2) Prefer the remote MCP endpoint (https://mcp.datadoghq.com) as documented; if you run the local stdio server, you will be making API calls from your machine. (3) The included scripts call Datadog endpoints (curl) to validate keys — that's expected but will transmit the keys over HTTPS to Datadog. (4) Confirm your org's security policies allow an agent to query observability data and that the app key used does not have excessive write permissions. If you want stronger assurance, ask the maintainer for an audit of the community npm package referenced for the local server, or verify the mcporter/claude integrations you plan to use. Installation looks coherent and proportionate; no glaring red flags were found.
功能分析
Type: OpenClaw Skill Name: datadog-mcp Version: 1.1.1 The datadog-mcp skill bundle is a legitimate integration for Datadog's Model Context Protocol (MCP) server. It facilitates querying observability data (logs, metrics, traces) using official Datadog endpoints (mcp.datadoghq.com). The included validation script (scripts/validate.sh) performs standard connectivity and credential checks against official Datadog APIs, and the documentation (SKILL.md, README.md) provides clear, safe instructions for setup and usage without any evidence of malicious intent, data exfiltration, or prompt injection.
能力评估
Purpose & Capability
Name/description (Datadog MCP) match the requested environment variables (DD_API_KEY, DD_APP_KEY), the MCP endpoint URLs (mcp.datadoghq.com / api.${DD_SITE}) and the documented capabilities (logs, traces, metrics, monitors, incidents, dashboards, synthetics, workflows). Nothing requested is unrelated to the stated purpose.
Instruction Scope
SKILL.md only instructs how to connect to Datadog's MCP (remote HTTP or local stdio via community package), how to set env vars, and provides runbooks for expected queries. The included validate.sh checks credential validity and MCP reachability. There are no instructions to read unrelated system files or exfiltrate data to third-party endpoints.
Install Mechanism
No install spec is provided (instruction-only). The only optional local installation suggested is the community npm package (npx datadog-mcp-server) and use of mcporter — both are reasonable and documented. No downloads from untrusted URLs or archive extraction are present.
Credentials
The skill requires only DD_API_KEY and DD_APP_KEY (and an optional DD_SITE). These are the credentials needed to call Datadog APIs/MCP. The number and type of environment variables are proportional to the functionality; names align with Datadog conventions and are justified by the SKILL.md.
Persistence & Privilege
The skill is not always-enabled (always:false) and does not request system-wide persistence or modify other skills. It runs via agent invocation and contains a small validation script; no privileged or persistent system changes are requested.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install datadog-mcp
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /datadog-mcp 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.1.1
Fix markdown formatting — broken code blocks and blockquote lint
v1.1.0
Fix: declare required env vars (DD_API_KEY, DD_APP_KEY) in SKILL.md metadata, add homepage link
v1.0.0
Initial release of Datadog MCP server skill. - Query Datadog logs, traces, metrics, monitors, incidents, dashboards, hosts, synthetics, and workflows via MCP. - Supports both remote (Streamable HTTP) and local (stdio) MCP transports. - Toolsets can be selected via URL parameters for fine-grained access. - Detailed setup instructions for remote, local, and CLI usage included. - Requires DD_API_KEY and DD_APP_KEY; optionally supports multi-site configuration with DD_SITE. - Security best practices and operational runbooks referenced.
元数据
Slug datadog-mcp
版本 1.1.1
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 3
常见问题

Datadog MCP 是什么?

Datadog observability via the official MCP Server — query logs, traces, metrics, monitors, incidents, dashboards, hosts, synthetics, and workflows through Da... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 229 次。

如何安装 Datadog MCP?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install datadog-mcp」即可一键安装,无需额外配置。

Datadog MCP 是免费的吗?

是的,Datadog MCP 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Datadog MCP 支持哪些平台?

Datadog MCP 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Datadog MCP?

由 Brandon Wilson(@bcwilsondotcom)开发并维护,当前版本 v1.1.1。

💬 留言讨论