Building the Datadog MCP Server — Datadog Illuminated with Reilly Wood
Associated Datadog Illuminated episode: Building the Datadog MCP Server
flowchart LR
A["DATADOG BACKEND\n(no direct access to user)"] --> B["Datadog hosted\nDATADOG MCP SERVER"]
B -->|HTTP| C["AGENT\n(WILDCARD)"]
C -->|talks with| D[USER]
D --> E["SUCCESS =\nHAPPY USER"]
TAMING THE AGENT (+ LLM) = CORRECTNESS + EFFICIENCY
- ☆ data format:
JSON→ YAML (nested) / CSV (flat) / TOON - ☆ agent control over context: ex let agents write SQL queries
- ☆ good tool descriptions: smart yet succinct
- ☆ default core toolset: ex logs, metrics, traces
- ☆ opt-in specialized toolset: ex synthetics
- ☆ specialized search docs tool: RAG / efficient docs access
- ☆ good error messages: Actionable
- ☆ good server-level instructions: ex "use search docs tool"

