Blank white background with no objects or features visible.

TrueFoundry Named Frost & Sullivan's 2026 Global Transformational Innovation Leader. Read report

Datadog MCP Server: Tools, Setup, and How to Connect It Safely

By Ashish Dubey

Published:

⚡ TL;DR
  • The Datadog MCP server is Datadog’s hosted remote MCP server, turning logs, metrics, traces, spans, monitors, dashboards, incidents, hosts and services into tools an agent can call.
  • Its highest-value use is incident response: an agent correlates a spiking metric, the failing trace and the matching error logs in one turn, instead of a human clicking through four Datadog tabs.
  • Its sharpest risk is not write access but log content — Datadog logs routinely carry tokens, connection strings and customer payloads, and a tool returning raw log lines pipes all of that into a model context.
  • On TrueFoundry it registers through Connect Official Remote MCP Servers, pre-templated with OAuth2 and Dynamic Client Registration — no OAuth app to build, though you set your Datadog region in the URL and allow-list the callback in Datadog.
  • You govern it four ways: disable tools you don’t need, scope by collaborator role, gate destructive tools behind approval, and run post-tool guardrails on what comes back.

What the Datadog MCP server is

The Datadog MCP server is a remote Model Context Protocol server hosted by Datadog. It exposes your org as callable tools: an agent asks for logs matching a query, a metric series, a trace by ID or a monitor’s state, and gets structured data back.

It is organised into toolsets you enable per connection, so you spend model context only on the surface you need. core is the default.

Toolset What agents can do
Core Search and analyse logs, query metrics and metadata, fetch traces and spans, search monitors, dashboards, incidents, hosts, services and dependencies, read and write notebooks
Alerting Search SLOs and monitor groups, validate and create monitors, read coverage
APM Search spans, query traces, discover span tags, pull Watchdog stories and latency bottlenecks
Database Monitoring Find instances, read query performance, explain plans, schemas, health signals
Error Tracking Search and read issues, analyse errors, update issues and comments
Cases / Work Management Search, read, create and update cases, comment, link Jira issues
Dashboards & Widgets Read full widget definitions, upsert and delete dashboards
Security, Kubernetes, Networks, RUM, Synthetics, Profiling,
Software Delivery, Data Observability, DDSQL, Audit Trail, Workflows, Remote Actions, Code Execution
Product-specific query and action tools per surface

Datadog’s tools reference lists well over two hundred tools — which is why the toolsets parameter exists, and why the tool-scoping section below matters here.

Because it is remote rather than local, there is no container to run: you point a client at a URL and authenticate, the same shape as the other remote MCP servers teams are standardising on. It is the observability MCP server most platform teams reach for first.

What agents actually do with it

Single calls are not the interesting part — get_datadog_metric alone is a worse Datadog UI. The value shows up when tools chain:

  • Live incident triage. A monitor fires. The agent calls search_datadog_monitors for the alert condition, get_datadog_metric for how far past threshold the signal went, search_datadog_spans for which service’s latency moved first, then search_datadog_logs on that service. One turn, four surfaces correlated.
  • Deploy correlation. search_datadog_events for deployments in the last hour against the error rate from analyze_datadog_logs — answering “did the 14:02 deploy cause this” without eyeballing two graphs.
  • Trace-to-root-cause. Take a trace ID off a customer report, call get_datadog_trace, find the slow span, then pull its explain plan from Database Monitoring.
  • Postmortem drafting. get_datadog_incident, search_datadog_logs for the window, create_datadog_notebook to write the timeline back.

The read/write split matters. Almost everything useful here is read. The write tools — creating monitors, upserting or deleting dashboards, updating cases, plus Remote Actions and Code Execution — are a smaller set with a far larger blast radius, and TrueFoundry labels them Destructive.

Why connecting it raw breaks at team scale

One SRE wiring Datadog into Claude Code during an on-call shift is fine. A whole platform org doing it is not.

Logs are the exfiltration path, and nobody treats them that way. This failure mode is specific to observability servers, and it belongs first. Application logs are where secrets go to die quietly: an API key in a request header logged wholesale, a connection string in a startup line, a customer’s address in a serialised order object. Teams accept that because log access is gated behind Datadog RBAC, and a human who greps for password is a known quantity. An agent calling search_datadog_logs is not. It pulls raw log lines into a model context, that context may reach a third-party inference provider, and it may end up quoted in a Slack summary. No credential was stolen, no policy broken — the data simply moved somewhere nobody modelled.

Query volume has a bill attached. Datadog pricing is usage-based and agents are good at looping. A poorly-prompted incident agent calls search_datadog_logs twenty times in one investigation, widening the window each round. Without per-tool call counts you find that on an invoice. [VERIFY — Datadog’s docs do not state that MCP tool calls are metered separately; treat this as a consequence of usage-based query pricing and confirm against your contract.]

Region mismatch produces useless errors. Datadog is site-specific, and the MCP URL plus every OAuth endpoint must point at your site. Get one wrong and you see a generic “Authentication failed” with nothing pointing at a hostname.

No attribution when it matters most. Datadog’s audit trail records that a query ran, not that your incident agent ran it on a prompt from a PagerDuty webhook. During a postmortem the trail stops at an API token.

None of these argue against connecting Datadog. They argue for a control plane in front of it, which is what an MCP gateway is.

Want to see this end to end?
Register the Datadog MCP server, disable the write tools, and hand your on-call team a read-only incident agent in one sitting.

Connecting the Datadog MCP server through TrueFoundry

Datadog MCP setup does not run through the managed catalogue. It registers through Connect Official Remote MCP Servers — pre-vetted servers where the auth is templated but you own the connection. For Datadog that template includes OAuth2 with PKCE and Dynamic Client Registration (DCR): TrueFoundry registers the OAuth client automatically, so there is no OAuth app to build.

On the Datadog side you need MCP Access enabled on the org, mcp_read on your user (plus mcp_write for write tools), and your site domain. Government sites are not supported.

Step 1 — Open the picker. In MCP Servers, click Add new MCP Server and pick Connect Official Remote MCP Servers.

Add new MCP Server picker with the Connect Official Remote MCP Servers option highlighted alongside TrueFoundry Managed MCPs, Connect any Remote MCP Server, Virtual MCP Server and Import from OpenAPI Spec
Add new MCP Server picker with the Connect Official Remote MCP Servers option highlighted alongside TrueFoundry Managed MCPs, Connect any Remote MCP Server, Virtual MCP Server and Import from OpenAPI Spec

Step 2 — Find Datadog. Type data in the catalogue search and click the datadog card.

Official remote MCP catalogue search filtered to ‘data’, showing the datadog card next to medidata, ramp-data, cdata-connect-ai and databricks entries

Official remote MCP catalogue search filtered to ‘data’, showing the datadog card next to medidata, ramp-data, cdata-connect-ai and databricks entries

Step 3 — Set your region in the URL. TrueFoundry pre-fills Name, Description and URL. The URL ships with a <region> placeholder that must be replaced with your Datadog site subdomain. Add yourself or your team under Collaborators as MCP Server Manager.

Add new MCP Server form showing Name datadog, the pre-filled description, the URL field containing a region placeholder, the Collaborators section, and Auth Data set to OAuth2
Add new MCP Server form showing Name datadog, the pre-filled description, the URL field containing a region placeholder, the Collaborators section, and Auth Data set to OAuth2

The shape is https://<mcp-host>/api/unstable/mcp-server/mcp?toolsets=all, with the host being mcp.datadoghq.com (US1), mcp.us3.datadoghq.com, mcp.us5.datadoghq.com, mcp.datadoghq.eu, mcp.ap1.datadoghq.com or mcp.ap2.datadoghq.com. The ?toolsets=all suffix is Datadog’s toolset selector — narrow it here (?toolsets=apm,core).

Step 4 — Confirm the OAuth2 / DCR details. TrueFoundry auto-populates the endpoints; click Refetch OAuth2 details if they are empty. Leave Client ID and Client Secret blank — DCR issues those at connection time.

OAuth2 config panel showing the Dynamic Client Registration banner, the Refetch OAuth2 details button, Grant Type set to Authorization Code, Authorization URL, Token URL, Registration URL, and Code Challenge Methods Supported set to S256
OAuth2 config panel showing the Dynamic Client Registration banner, the Refetch OAuth2 details button, Grant Type set to Authorization Code, Authorization URL, Token URL, Registration URL, and Code Challenge Methods Supported set to S256

For a US5 org:

auth_data:
  type: oauth2
  grant_type: authorization_code
  authorization_url: https://us5.datadoghq.com/oauth2/v1/authorize
  token_url: https://us5.datadoghq.com/oauth2/v1/token
  registration_url: https://us5.datadoghq.com/api/v2/oauth2/register
  jwt_source: access_token
  code_challenge_methods_supported:
    - S256

All four URLs must use the same Datadog site. Mixing the generic datadoghq.com host with a non-US1 org is the most common cause of failure.

Step 5 — Allow-list the callback in Datadog. Under Organization Settings → Preferences, add TrueFoundry’s OAuth callback to MCP OAuth Redirect URLs — for a self-registered remote server, https://<tfy-control-plane-base-url>/api/svc/v1/llm-gateway/mcp-servers/oauth2/callback [VERIFY — take the exact callback from your own server’s OAuth config rather than assuming it]. Confirm on the same page that MCP Access is enabled, MCP Write Access only if needed, and the Site top-right matches your region.

Datadog Organization Settings Preferences page showing MCP Access and MCP Write Access enabled and the MCP OAuth Redirect URLs section with an Add URL field
Datadog Organization Settings Preferences page showing MCP Access and MCP Write Access enabled and the MCP OAuth Redirect URLs section with an Add URL field

Step 6 — Authorize. Save the server, open its Tools tab and click Connect Now. Read Datadog’s consent screen rather than clicking through it — the permission count is high, and it is the clearest view of what you are opening — then Authorize.

Datadog Authorize access screen listing the sensitive permissions the MCP client is requesting along with the total permission count
Datadog Authorize access screen listing the sensitive permissions the MCP client is requesting along with the total permission count

Step 7 — Verify the tools. You return to the detail page, now showing a Remote tag, Auth Type OAuth2, and the full tool list with read-only and Destructive labels.

Connected Datadog MCP server detail page showing OAuth2 auth type and the Tools tab listing aggregate_events, aggregate_spans, analyze_datadog_logs, create_datadog_notebook, get_datadog_dashboard and get_datadog_incident
Connected Datadog MCP server detail page showing OAuth2 auth type and the Tools tab listing aggregate_events, aggregate_spans, analyze_datadog_logs, create_datadog_notebook, get_datadog_dashboard and get_datadog_incident

How authentication actually works

TrueFoundry separates inbound authentication — how a client proves itself to the gateway — from outbound, how the gateway proves itself to Datadog. The two are independent, and that is what makes per-user attribution possible.

MCP Gateway authentication and authorization flow showing inbound authentication, access control, and outbound authentication as three distinct stages
MCP Gateway authentication and authorization flow showing inbound authentication, access control, and outbound authentication as three distinct stages

Inbound — four supported methods:

Method Use it for
TrueFoundry API Key (PAT) Internal engineers with TrueFoundry accounts
Virtual Account Token Service-to-service callers and shared application tokens
Identity Provider Token Services presenting a JWT from your own IdP (Okta, Entra, Auth0, Cognito)
TrueFoundry OAuth IDE tools like Cursor, VS Code and Claude Code needing delegated user access

Virtual Account tokens give every request identical access, so they cannot express per-user Datadog scope — use a PAT or an IdP token inbound instead.

Outbound — OAuth2 Authorization Code with PKCE, plus DCR. Each user authorizes their own Datadog account and TrueFoundry manages consent, token storage and refresh, injecting the right token per user on every call.

One subtlety in Datadog’s model is genuinely good news. Its MCP permissions grant no resource access on their own — mcp_read and mcp_write only unlock the MCP surface on top of the user’s existing Datadog role. An agent acting for an engineer who cannot see production logs in the UI cannot see them through MCP either. What the gateway adds is the layer Datadog cannot: which tools are reachable, who can reach them, and a call log naming the caller.

Scoping tools before you ship

The Tools tab is where a 200-plus-tool server becomes a workable one.

MCP server Tools tab showing per-tool toggles, Try and Edit controls, an Enable new tools by default switch, and a Bulk Action button
MCP server Tools tab showing per-tool toggles, Try and Edit controls, an Enable new tools by default switch, and a Bulk Action button

Per-tool toggles. Turn a tool off and it is omitted from tools/list entirely — clients never see it and it cannot be invoked. This is not prompt-layer filtering. An incident agent needs search_datadog_logs, get_datadog_metric, get_datadog_trace and search_datadog_monitors, not delete_datadog_dashboard, execute_code or Remote Actions. An agent that cannot call a tool cannot be talked into calling it, whatever a poisoned log line says.

Enable new tools by default. Left on, tools Datadog ships appear automatically. Datadog’s own docs call these tools subject to change, so turning it off is right — your capability surface then grows only when you decide it should.

Bulk Action. Switches every row to checkboxes with Select all. On a server this size: default mode off, Select all, uncheck, enable the dozen tools you need.

Click the pencil on any tool to change how the model sees it:

Edit Tool modal with a read-only Name field, a Description override field, and an MCP Tool Annotations selector offering None, Read-only and Destructive
Edit Tool modal with a read-only Name field, a Description override field, and an MCP Tool Annotations selector offering None, Read-only and Destructive

The Description override (up to 20,000 characters) steers selection between Datadog’s near-identical query tools — search_datadog_logs versus analyze_datadog_logs is the pair a model picks wrong. MCP Tool Annotations mark a tool Read-only or Destructive, setting readOnlyHint or destructiveHint — which is what lets the approval policies below work without enumerating names.

Who can do what: collaborator roles

Access control attaches to users, teams or virtual accounts on two dimensions: which servers an identity can reach, and which tools inside one it can call.

Update MCP Server drawer showing the Collaborators section with MCP Server Manager and MCP Server Approver roles assigned
Update MCP Server drawer showing the Collaborators section with MCP Server Manager and MCP Server Approver roles assigned
Role Can do
MCP Server Manager Edit configuration, manage collaborators, enable/disable tools, delete the server
MCP Server User Invoke the server's tools from the Playground and IDEs; cannot change settings
MCP Server Approver Read access plus approve or deny held tool calls on that server

This maps onto how teams already work: platform holds Manager, on-call engineers hold User, the SRE lead holds Approver — the same MCP access control model applied across every server.

Ready to scope your first observability server?
Connect Datadog, keep only the read tools your agent needs, and put the rest behind approval.

Human approval for destructive tools

Disabling write tools is blunt. Sometimes you want an agent to create a monitor or upsert a dashboard mid-incident — just not unattended at 3am.

When a gated tool is called, the call is held, a request is created, and approvers are notified. Create policies under AI Gateway → Policies → MCP Tool Approval (Beta in the console).

New Approval Policy form showing tool selection with Once and Time-based approval validity options
New Approval Policy form showing tool selection with Once and Time-based approval validity options

Each policy names the servers it gates and picks an approval scope: named for a specific list, destructive for everything marked destructiveHint: true, or all. The most specific wins — named > destructive > all. Mark Datadog’s write tools Destructive once and gate the class rather than listing each by name.

Validity is Once or time-based in minutes, and the most restrictive wins — Once beats 10 minutes beats 30. A 30-minute window suits incident work: it covers an investigation without leaving a grant open overnight.

Approvers are notified over Email, Slack, PagerDuty or MS Teams, and review requests in the console.

Pending Requests tab listing held tool calls with tool arguments, requester, validity window, and Approve and Deny actions
Pending Requests tab listing held tool calls with tool arguments, requester, validity window, and Approve and Deny actions

Each request shows the tool, policy, requester, validity window and actual arguments — so an approver sees which dashboard an agent wants to delete before waving it through. While pending, the caller gets a JSON-RPC result carrying _meta.approval_status: "pending" rather than an error, so a well-behaved agent retries. Grants are per requester; a denial blocks nobody permanently, so to durably block, disable the tool or remove the user.

Testing in the Tool Playground

Click Try next to a tool on the server detail page. For search_datadog_logs, supply a query and a time window, hit Execute Tool, and read the JSON in the right-hand panel; Try is disabled for any tool you turned off.

Do this with a logs tool on day one and read what comes back — those lines are what will sit in your model’s context on every incident.

Using it from your IDE

Open the How To Use tab for your tenant-specific Gateway URL and paste-ready snippets.

How To Use tab showing client snippets for Python, TypeScript, Cursor, VS Code, Claude Code and Windsurf, with Add MCP to Cursor and Show API Key buttons
How To Use tab showing client snippets for Python, TypeScript, Cursor, VS Code, Claude Code and Windsurf, with Add MCP to Cursor and Show API Key buttons

It covers Claude Code, VS Code, Claude Web, Claude Desktop, Cursor, Windsurf, Codex, and the Python and TypeScript MCP SDKs. Add MCP to Cursor writes the config; Show API Key reveals the token if your client needs one in a header. Take the URL from this tab — a hand-built endpoint is the commonest cause of a client that lists no tools.

What you get once it’s behind the gateway

Post-tool guardrails. The control that matters most for Datadog. Guardrail hooks run at mcp_pre_tool, before a tool is invoked, and mcp_post_tool, after it returns. The post-tool hook is where you enforce policy on log content — catching a secret or PII field in a response before it reaches the model. If you configure one guardrail on one observability server, make it this one.

Tool-level metrics. The MCP Metrics dashboard breaks down requests per second, P50/P75/P90/P99 latency, failure rate by error type, and a ranked request count per tool.

MCP Metrics Tools view showing tool request rates, latency percentiles, failure rate by error type, and request count breakdowns
MCP Metrics Tools view showing tool request rates, latency percentiles, failure rate by error type, and request count breakdowns

For most servers this is a performance tool; for Datadog it is also the fastest way to find the agent querying search_datadog_logs forty times per investigation.

Full-request observability. Every tool call is traced with caller identity, tool name, inputs and latency, exported over OpenTelemetry — including, pleasingly, back into Datadog.

Low overhead. The gateway adds roughly 3–4 ms and handles 350+ RPS on one vCPU.

One registry. With several servers registered you can bundle a subset of their tools behind one endpoint using a Virtual MCP Server — so an on-call agent gets exactly the Datadog, GitHub and Slack tools it needs.

Revoking access

Tenant admins can wipe every stored credential on the server from the three-dot menu next to Edit.

Three-dot menu on the MCP server detail page showing the Revoke all tokens action
Three-dot menu on the MCP server detail page showing the Revoke all tokens action

Revoke all tokens deletes every auth override and stored OAuth token for all users and virtual accounts on that server, takes effect on the next request, and is recorded in Activity Logs. It is irreversible, and tenant-admin only.

One limit: it clears tokens at the gateway only, not the grant at Datadog. In an actual incident, also disable MCP Access in Datadog’s Organization Settings, which shuts the upstream surface org-wide.

Gotchas worth knowing

The region trap is the whole ballgame. Before debugging anything else, read the Site in Datadog’s top right and check all four URLs against it.

Toolsets are a cheaper lever than toggles. The ?toolsets= parameter filters at the source, so those tools never enter the schema list — which keeps the list small enough that clients do not degrade.

MCP Write Access is an org-wide switch, not a per-user one. Enabling it unlocks the write surface for every user whose Datadog role already permits those actions. Leave it off unless you need write tools, and use gateway-side approval policies instead.

Related reading

Conclusion

The Datadog MCP server is the most useful server most platform teams can connect this year, because incident response is the shape of problem agents are good at: correlate four data sources fast, under pressure, at 3am. It is also where the standard security framing misleads you. The risk is not that an agent deletes a dashboard. It is that an agent reads a log line containing a production credential and moves it somewhere you never modelled.

That is solvable in a specific place: post-tool guardrails on the response, per-tool scoping, per-user OAuth so Datadog’s RBAC still binds, approval gates on the writes, and a traced call log with real caller identity. Running Datadog through TrueFoundry’s MCP Gateway gives you all five without building any of it.

Connect the Datadog MCP server on TrueFoundry

Try now.

One gateway for all your models, MCP servers, and agents.
No credit card needed.

Start free
Table of Contents

One Gateway for Every LLM, Agent and MCP Server

Book a 30-min with our AI expert

Book a Demo

The fastest way to build, govern and scale your AI

Book Demo
Summarize with
ChatGPT logo by OpenAI
Perplexity AI logo
Blurry red snowflake on white background, symmetrical frosty design with soft edges and abstract shape.

Discover More

No items found.
|
5 min read

Datadog MCP Server: Tools, Setup, and How to Connect It Safely

No items found.
|
5 min read

Notion MCP Server: Tools, Setup, and Scoping It Safely

No items found.
|
5 min read

Salesforce MCP Server: Tools, Permissions, and How to Connect It Safely

No items found.
|
5 min read

Slack MCP Server: Tools, Scopes, and How to Connect It Safely

No items found.
No items found.

Recent Blogs

Black left pointing arrow symbol on white background, directional indicator.
Black left pointing arrow symbol on white background, directional indicator.

Frequently asked questions

What is the Datadog MCP server?

Datadog’s hosted remote Model Context Protocol server, exposing Datadog as tools an agent can call — searching and analysing logs, querying metrics, fetching traces and spans, reading monitors, dashboards, incidents, hosts and services, creating notebooks. Agents connect over a region-specific URL with OAuth2.

What tools does the Datadog MCP server expose?

The Datadog MCP server tools are grouped into toolsets. core covers logs, metrics, traces, dashboards, monitors, incidents, hosts, services, events and notebooks. Product-specific toolsets add APM, Alerting, Database Monitoring, Error Tracking, Security, Cases, RUM, Synthetics, Kubernetes, Profiling, DDSQL and Audit Trail — several hundred in total. The full list appears on the Tools tab after authorization.

Is the Datadog MCP server safe for enterprise use?

Yes, with two controls. Datadog’s model helps: MCP permissions grant no resource access on their own, so every user operates under their existing Datadog role. Add post-tool guardrails on log responses — logs carry secrets and PII you do not want reaching a model unfiltered — plus per-tool scoping so agents cannot reach write or code-execution tools.

Can I deploy TrueFoundry in my own VPC or on-prem?

Yes. TrueFoundry runs in your VPC, on-prem, air-gapped, or hybrid, so prompts and responses never leave your domain even as you route across many providers.

Does TrueFoundry support MCP and AI agents generally?

Yes. It includes an MCP Gateway, an Agent Gateway, and an MCP & Agents Registry with tool-level access control. Agents on LangGraph, CrewAI, AutoGen, or a custom framework can all be governed centrally.

Does it integrate with my existing observability stack?

Yes. The gateway is OpenTelemetry-compliant and plugs into Grafana, Datadog, Prometheus, or your preferred stack. It traces every request from prompt to tool and model execution, so you get unified logging without ripping out what you already run.

Take a quick product tour
Start Product Tour
Product Tour