MCP App Store
Code
Datadog icon

Datadog

by Datadog

Overview

Analyze, investigate, and act on your Datadog telemetry directly from Claude using natural language. Ask questions about your production applications. Identify, visualize, and remediate issues in your critical services. Run agentic loops to ensure you continue to maintain good observability and service management posture.

Tools

aggregate_events

ChatGPT
Aggregate Datadog events to compute counts, sums, averages, min, max, cardinality, and percentiles (P50, P75, P90, P95, P99), with optional grouping by fields or time intervals. Use this for aggregated analysis such as event counts by source, event frequency over time, or grouped summaries across tags. For raw event inspection, titles/messages, or tag exploration, use search_datadog_events.

aggregate_rum_events

ChatGPT
Aggregate Datadog RUM events to compute counts, sums, averages, min, max, cardinality, and percentiles (P50, P75, P90, P95, P99), with optional grouping by fields or time intervals. Use this for aggregated analysis of RUM data such as session counts over time, error counts by page, or p95 loading times by browser or URL path. For raw event inspection or attribute discovery, use search_datadog_rum_events.

aggregate_spans

ChatGPT
Aggregate Datadog APM spans to compute counts, sums, averages, min, max, cardinality, and percentiles (P50, P75, P90, P95, P99), with optional grouping by fields or time intervals. Use this for aggregated analysis such as request counts over time, p95 duration by service or resource, or error counts grouped by endpoint or status code. For raw span inspection or to discover fields to group by or aggregate on, first use search_datadog_spans and optionally request custom_attributes.

analyze_datadog_logs

ChatGPT
Analyze Datadog logs using SQL. Runs against a virtual 'logs' table filtered by your search query. Good for aggregations, counts, group-bys, or peeking at recent logs with LIMIT. To discover custom attributes for extra_columns, first call search_datadog_logs with extra_fields. If a query times out, try a shorter time range.

ask_widget_expert

ChatGPT
Get targeted instructions for building a Datadog widget. Returns a concise how-to guide — widget type recommendations, required fields, schema patterns, and an annotated example — that you use to build the widget definition yourself. The expert has deep knowledge of all widget types and schemas but does NOT have access to real telemetry, live data, or the user's environment. Any examples in the response use PLACEHOLDER values for queries. You are responsible for discovering real metric names, log queries, or APM resource names through data exploration tools and substituting them — do not copy example queries directly into a widget without first validating them against real data. Returns focused instructions rather than a full schema dump, so it's cheaper than get_widget_reference. Useful at any stage: choosing a widget type, understanding schema requirements, or debugging an invalid widget.

create_datadog_notebook

ChatGPT
Creates a new Datadog notebook. Include key findings, evidence, supporting data, and complete query documentation unless told otherwise. Do not start the first markdown cell with a heading that repeats the notebook name — it is already displayed as the title. Look up widget reference schemas before constructing graph cells.

edit_datadog_notebook

ChatGPT
Edits an existing notebook. Can edit cells, metadata (name, template_variables, tags), or both. Look up widget reference schemas before constructing graph cells. Cell modes: (1) Full-replace (default) — replaces all cells; destroys existing comment marks. (2) Append (append_only=true) — adds cells to the end; preserves comment marks. To edit only metadata, omit the cells parameter and provide at least one of name/template_variables/tags. Metadata edits are done on a best effort basis and can be combined with either cell mode.

get_active_feature_flags

ChatGPT
do-not-call

get_change_stories

ChatGPT
Retrieve change events for an APM service over a time range. Use to correlate changes with performance issues, errors or incidents. Tracked Change types: deployment (code/version), feature_flag, traffic_anomaly, watchdog (Datadog anomaly detection), kubernetes (k8s deployment manifest updates), scale (manual k8s scale events), crashloopbackoff (k8s crashloops), database (DB schema or setting changes), schema (data stream schemas only; not DB/API schema), configuration (limited to specific tracked sources — absence does not imply no config changed)

get_datadog_dashboard

ChatGPT
Retrieves a custom or integration Datadog dashboard by ID, returning its title, description, tags, and widgets. Use search_datadog_dashboards first to find dashboard IDs.

get_datadog_incident

ChatGPT
Get detailed information about a specific Datadog incident by ID, including status, severity, timeline, associated users, and attachments.

get_datadog_metric

ChatGPT
Query metrics data from Datadog. Use response_format='timeseries' (default) to get time-indexed data points for graphs and trend analysis. Use response_format='scalar' to get a single aggregated value per group, useful for current state, summaries, and comparisons. For response_format='scalar', use structured query objects; the aggregator field controls how the time window collapses to a single value and defaults to avg if omitted. The query prefix, such as avg: or sum:, is not the scalar aggregator field. Supports multiple queries in one call plus formula expressions. Query syntax: grouping must come before modifiers, e.g. 'sum:trace.http.request.errors{env:prod} by {service}.as_count()', not '.as_count() by {service}'. Within {...}, do not mix comma-separated tag filters with boolean filters; if any top-level filter uses AND, OR, NOT, or IN, join top-level filters with explicit AND and parenthesize OR groups, e.g. '{(service:api OR service:worker) AND datacenter:us1.prod.dog}', not '{service:api OR service:worker,datacenter:us1.prod.dog}'.

get_datadog_metric_context

ChatGPT
Get metadata (description, type, unit, integration), available tags/dimensions, and optionally related assets for a metric. Useful for exploring metrics before querying them. Set use_cloud_cost=true for Cloud Cost Management metrics.

get_datadog_notebook

ChatGPT
Retrieve information about a specific Datadog notebook by ID. This tool provides details including name, status, and associated author. The ID can also be extracted from a URL. The ID will be the last component, for example, <host>/notebook/<ID>.

get_datadog_trace

ChatGPT
Retrieve a trace by trace ID from Datadog APM. This tool fetches all spans within a specific trace by default, providing detailed information about the request flow, timing, and service interactions. For large traces or to retrieve a summarized trace, set only_service_entry_spans=true to get a hierarchical condensed view that shows service boundaries, collapsing internal operations. The summarized view will indicate expandable spans with hidden_child_spans_count. The response includes a trace_deep_link_url in metadata that links directly to the trace flamegraph in the Datadog UI.

get_user_config

ChatGPT
do-not-call

get_widget

ChatGPT
Retrieve and visualize Datadog metrics, traces, logs, and other data as interactive charts. Use this tool whenever users ask to see, show, graph, plot, visualize, or rank Datadog data — including ranking-style queries like 'which hosts/services/pods have the most/least X', 'top N by Y', or 'breakdown by Z'. Covers metrics timeseries, request counts, latency, error rates, toplists, and distributions. This tool renders the chart directly and does not require pre-fetched data — raw-data tools alone aren't sufficient for visualization requests. Input modes: Direct definition (write a new widget via widget_definition), By ID (existing widget via dashboard_id + widget_id), or By URL (Datadog widget_url). Supported interactive types: bar_chart, change, cohort, distribution, funnel, heatmap, list_stream, query_table, query_value, retention_curve, sankey, scatterplot, sunburst, timeseries, toplist, treemap. Before constructing widget_definition, load the datadog/visualizations skill for schema patterns, response shape, and recovery.

get_widget_data_fetcher

ChatGPT
do-not-call

get_widget_reference

ChatGPT
Get TypeScript schemas and building instructions for widget types. Call before generating widget JSON. Note: "group" is a container for organizing related widgets — include both "group" and any intended child widget type/s in one call for deduplication.

get_widget_reference_compressed

ChatGPT
Get compressed TypeScript schemas and building instructions for widget types. Call before generating widget JSON. Note: "group" is a container for organizing related widgets — include both "group" and any intended child widget type/s in one call for deduplication.

list_datadog_skills

ChatGPT
List available Datadog skill guides. Skills document how to use Datadog's tools: the right attributes, query syntax, and common pitfalls. Call this before load_datadog_skill whenever you are not already certain of the exact skill name; skill names are not predictable from topic words. Use query for fuzzy search across name and description (results are ranked). Use include_header=true to see one-line summaries alongside names. Load skills proactively when starting work in a relevant Datadog domain, not after errors.

load_datadog_skill

ChatGPT
Load a Datadog skill guide before using related Datadog tools. Skills improve query quality by documenting the right attributes, syntax, and common pitfalls. Skill names depend on the visible toolsets; if you do not already know the exact skill name from a prior list_datadog_skills response, call list_datadog_skills first and do not guess names from topic keywords. Set header_only=true to preview a skill's summary, related skills, and bundled resources. Set resource_path to load a specific bundled reference.

search_datadog_dashboards

ChatGPT
List and retrieve information about Datadog dashboards. This tool helps discover available dashboards, their IDs, titles, and underlying queries. Use this tool when you need to find specific dashboards, get an overview of all dashboards in your Datadog account, or find important logs+metrics queries in dashboards.

search_datadog_events

ChatGPT
Search and retrieve raw Datadog events (deployments, alerts, system activities, infrastructure changes, etc.). Do NOT use for counts, aggregations, or grouped analysis — use aggregate_events instead. Best for: inspecting individual events, reading event titles/messages/tags, and exploring event patterns before deciding how to aggregate them. Supports complex queries with boolean operators and tag filtering. Results include event titles, messages, timestamps, and tags.

search_datadog_hosts

ChatGPT
Explore Datadog hosts inventory with SQL. Queries run against the virtual 'hosts' table backed by "dd.hosts" (Advanced Query API), which exposes hostname, hostname_aliases (text[]; use hostname_aliases[1]), tags (hstore map; use tags->'key'), cloud_provider, resource_type, instance_type, os, os_version, agent_version, memory_mib, cpu (hstore map; use cpu->'key'), kernel (hstore map; use kernel->'key'), sources (text[]; use sources[1]), modification_detected_at (timestamp). DDSQL notes: DDSQL (Datadog SQL) is a PostgreSQL subset: every non-aggregated SELECT column must appear in GROUP BY, SELECT aliases cannot be reused in WHERE/GROUP BY/HAVING (repeat the full expression instead, e.g., GROUP BY DATE_TRUNC('hour', timestamp) not GROUP BY hour), and only declared table columns may be referenced. Use the -> operator or json_extract_path_text (cast as needed) for JSON access. Avoid unsupported constructs like ANY(), ->>, QUALIFY, information_schema, and current_timestamp. Column names containing special characters like '@' must be quoted (e.g., SELECT "@foo" FROM logs).

search_datadog_incidents

ChatGPT
Search Datadog incidents. Default sort: newest first. Supports filtering by state, severity, title, team, creation time, and more. Use semantic_query for natural-language search over AI-generated incident summaries. Prefer query first; only add semantic_query when query by keyword and metadata filters aren't sufficient to answer the question.

search_datadog_logs

ChatGPT
Search and retrieve raw log entries or log patterns. Do NOT use for counting or aggregations — use analyze_datadog_logs instead. Best for: viewing raw logs, discovering patterns (use_log_patterns=true), and discovering custom attributes via extra_fields for use as extra_columns in analyze_datadog_logs. Response shape (when extra_fields is set, output is YAML): three buckets — (1) top-level fields like env/host/service queried bare (env:prod); (2) attributes: map with source-prefixed keys — custom.X and attributes.X are queried as @X (strip the bucket prefix), but error.X keeps its prefix as @error.X because error is a real top-level attribute; (3) tags: list of key:value strings queried bare. Load the datadog/logs skill for the full key-translation table.

search_datadog_metrics

ChatGPT
List available metrics in Datadog with optional filtering by name and tags. Set use_cloud_cost=true to search Cloud Cost Management metrics.

search_datadog_monitors

ChatGPT
List and retrieve information about Datadog monitors. This tool helps discover monitors, their status, configuration, and alerts. Use this tool when you need to find monitors for investigation, management, or analysis purposes.

search_datadog_notebooks

ChatGPT
Search Datadog notebooks. Use this tool when you need to find notebooks for investigation or monitoring purposes. Results can be filtered, for example by author, and sorted. This tool returns snippets of the original notebook. To fetch the entire notebook, use the get_datadog_notebook tool.

search_datadog_rum_events

ChatGPT
Search and retrieve raw Datadog RUM events using advanced query syntax. Do NOT use for counts, aggregations, or grouped analysis. Best for: inspecting individual RUM events, debugging specific user experience issues, exploring available event attributes in raw or detailed_output responses before deciding what to aggregate. Supports filtering by event types (session, view, action, error, resource, long_task, vital, operation), user attributes, performance metrics, and more. Results include detailed event data for analysis.

search_datadog_service_dependencies

ChatGPT
Retrieve information about Datadog service dependencies. This tool helps discover upstream and downstream service dependencies in your environment as well as services owned by a given team. Use this tool when you need to find services for investigation, management, or analysis purposes. Either service or team must be supplied but not both; service for service dependencies, team for service ownership. If the capability exists, the service dependencies can be displayed visually as a graph, for example, as a Mermaid diagram. If outputting to them to a notebook, the mermaid markdown type can be used. If making any assumptions about service dependencies, ensure they are explicitly stated to the user.

search_datadog_services

ChatGPT
List and retrieve information about Datadog services. This tool helps discover services in your environment, their descriptions, teams, and links. Use this tool when you need to find services for investigation, management, or analysis purposes. Each result includes both 'name' (the internal service identifier, e.g. used in APM/log queries as 'service:<identifier>') and 'display_name' (the human-readable label from the service catalog). For most services these are identical; they differ when a custom displayName is set in the catalog YAML.

search_datadog_spans

ChatGPT
Retrieve raw Datadog APM spans matching a query. Do NOT use for counts, aggregations, or grouped analysis — use aggregate_spans instead. Best for: inspecting individual spans, debugging request flows and failures, and discovering span fields/attributes, including via custom_attributes, that you may want to aggregate or group by with aggregate_spans. IMPORTANT: When the user asks for 'security traces', 'AppSec traces', 'AAP traces', 'security activity', or 'security signals on traces', the query MUST start from @appsec.security_activity:*. Do NOT substitute keyword-based guesses like service:*security*, resource_name:*auth*, @http.status_code:401, etc. — those do not identify security traces. Application & API Protection (AAP) spans carry these standard attributes (all strings): @appsec.security_activity (<category>.<type>, e.g. attack_attempt.sql_injection, business_logic.users.login.failure; multi-valued when multiple rules match); @appsec.category (top-level classification, e.g. attack_attempt, business_logic); @appsec.type (specific threat/event type, e.g. sql_injection, xss, users.login.failure); @appsec.rule_id (AAP rule that matched, e.g. crs-942-100; multi-valued); @appsec.blocked (true/false, whether AAP blocked the request). Use these attributes to narrow AppSec queries (e.g. @appsec.category:attack_attempt, @appsec.type:sql_injection, @appsec.blocked:true). The response includes a traces_explorer_url for the overall query. To link to an individual trace in the Datadog UI, use the pattern: <base_url>/apm/trace/<trace_id> (e.g. https://app.datadoghq.com/apm/trace/abc123). The base_url for the user's org is available in the response metadata.

submit_mcp_feedback

ChatGPT
Submit feedback about capabilities provided by this Datadog MCP server only. Do NOT submit feedback about other MCP servers or plugins (e.g. Atlassian, CodeSandbox, Slack, GitHub). After completing a task, briefly consider whether any Datadog MCP capability was notably unhelpful or whether the workflow was harder than it should have been. If so, submit feedback so the MCP team can improve the experience. You should submit feedback when: - A Datadog MCP capability produced wrong, misleading, or unhelpful results that impacted your ability to help the user. - A Datadog MCP capability's output was missing key information that would have been useful. - You could not accomplish something the user asked for because no Datadog MCP capability exists for it. - A Datadog MCP workflow required many steps or workarounds that could be streamlined. - A Datadog MCP capability's interface was confusing or its parameters were unclear. Keep it to one submission per distinct issue per conversation. Skip transient errors (timeouts, rate limits) that resolved on retry.

upsert_datadog_dashboard

ChatGPT
Creates or updates a Datadog ordered-grid dashboard. New dashboards are always ordered; widget updates are only supported on ordered dashboards. When updating widgets, prefer diff-style payloads to minimize tokens: send full definitions only for new or changed widgets, include {"id": N} for unchanged widgets to keep, and omit existing widgets only when deleting them.

validate_dashboard_widget

ChatGPT
Validate a widget definition against the dashboard schema. Call when generating a widget JSON.

visualize_tabular_data

ChatGPT
Render tabular data as an interactive visualization (sunburst, treemap, or toplist). WHEN TO USE: - After aggregating data from queries (GROUP BY, analytics, metrics) to visualize hierarchical relationships or rankings - For ad-hoc visualization of data you've already fetched and transformed - When you have grouped data and want to show proportional breakdowns or parent-child relationships ALTERNATIVES: - Use get_widget to directly render data from existing dashboard widgets - Use swap_widget_type to convert saved widget definitions between types

aap_onboarding

Claude

aggregate_datadog_ci_pipeline_events

Claude

aggregate_datadog_test_events

Claude

aggregate_dora_deployments

Claude

aggregate_events

Claude

aggregate_rum_events

Claude

aggregate_spans

Claude

analyze_cloud_network_monitoring

Claude

analyze_datadog_logs

Claude

analyze_datadog_security_signals

Claude

analyze_security_findings

Claude

append_reference_table_rows

Claude

ask_widget_expert

Claude

browser_onboarding

Claude

check-flag-implementation

Claude

check_datadog_mcp_setup

Claude

code_coverage_onboarding

Claude

configure_toolsets

Claude

create-feature-flag

Claude

create_datadog_monitor

Claude

create_datadog_notebook

Claude

create_datadog_security_detection_rule

Claude

create_datadog_security_suppression

Claude

create_reference_table

Claude

cws_agent_events_schema

Claude

ddsql_get_spec

Claude

ddsql_read_saved_query

Claude

ddsql_run_query

Claude

ddsql_schema_get_table_columns

Claude

ddsql_schema_search_tables

Claude

ddsql_schema_search_unstructured_fields

Claude

ddsql_search_saved_queries

Claude

ddsql_upsert_saved_query

Claude

delete_datadog_dashboard

Claude

delete_datadog_security_detection_rules

Claude

delete_datadog_security_suppression

Claude

delete_llmobs_evaluator

Claude

describe_datadog_k8s_resource

Claude

devices_onboarding

Claude

diff_network_device_configurations

Claude

docker_onboarding

Claude

ecs_onboarding

Claude

edit_datadog_notebook

Claude

edit_synthetics_tests

Claude

execute_datadog_workflow

Claude

expand_llmobs_spans

Claude

explore_profiling_call_graph

Claude

explore_profiling_flame_graph

Claude

explore_profiling_timeline

Claude

find_datadog_database_instances

Claude

find_llmobs_error_spans

Claude

generate_monitor_definition

Claude

generate_monitor_message

Claude

get-canary-results

Claude

get-feature-flag

Claude

get-guardrail-metric

Claude

get_datadog_code_coverage_branch_summary

Claude

get_datadog_code_coverage_commit_summary

Claude

get_datadog_dashboard

Claude

get_datadog_database_calling_services

Claude

get_datadog_database_explain_plans

Claude

get_datadog_database_health_signals

Claude

get_datadog_database_query_performance

Claude

get_datadog_database_query_statement

Claude

get_datadog_database_recommendations

Claude

get_datadog_database_schemas

Claude

get_datadog_error_tracking_issue

Claude

get_datadog_flaky_tests

Claude

get_datadog_flaky_tests_management_policies

Claude

get_datadog_incident

Claude

get_datadog_k8s_manifest

Claude

get_datadog_metric

Claude

get_datadog_metric_context

Claude

get_datadog_notebook

Claude

get_datadog_security_detection_rule

Claude

get_datadog_security_detection_rules_schema

Claude

get_datadog_security_signal

Claude

get_datadog_security_signals_schema

Claude

get_datadog_security_suppressions

Claude

get_datadog_test_optimization_settings

Claude

get_datadog_trace

Claude

get_datadog_workflow

Claude

get_datadog_workflow_instance

Claude

get_kafka_client_configuration

Claude

get_kafka_schema_registry_subject_versions

Claude

get_llmobs_agent_loop

Claude

get_llmobs_eval_aggregate_stats

Claude

get_llmobs_eval_config

Claude

get_llmobs_evaluator

Claude

get_llmobs_experiment_dimension_values

Claude

get_llmobs_experiment_event

Claude

get_llmobs_experiment_metric_values

Claude

get_llmobs_experiment_summary

Claude

get_llmobs_span_content

Claude

get_llmobs_span_details

Claude

get_llmobs_trace

Claude

get_monitor_coverage

Claude

get_monitor_templates

Claude

get_ndm_device

Claude

get_network_device_configuration

Claude

get_network_path_test_runs

Claude

get_notification_handles

Claude

get_profiling_field_values

Claude

get_profiling_fields

Claude

get_profiling_profile_types

Claude

get_profiling_runtime_ids

Claude

get_profiling_service_insights

Claude

get_profiling_services

Claude

get_profiling_tag_names

Claude

get_profiling_tag_values

Claude

get_profiling_timeseries

Claude

get_prs_by_head_branch

Claude

get_reference_table_rows

Claude

get_synthetics_tests

Claude

get_widget

Claude

get_widget_reference

Claude

kubernetes_onboarding

Claude

launch_llmobs_experiment

Claude

linux_onboarding

Claude

list-allocations-for-feature-flag

Claude

list-environments

Claude

list-feature-flags

Claude

list-guardrail-metrics

Claude

list_datadog_security_detection_rules

Claude

list_datadog_skills

Claude

list_datadog_workflows

Claude

list_kafka_broker_configuration_versions

Claude

list_kafka_schema_registry_schemas

Claude

list_kafka_topic_configuration_versions

Claude

list_llmobs_evals

Claude

list_llmobs_evals_by_ml_app

Claude

list_llmobs_experiment_events

Claude

list_mcp_feedback

Claude

list_reference_table_rows

Claude

list_reference_tables

Claude

llm_observability_onboarding

Claude

load_datadog_skill

Claude

optimize_datadog_database_query

Claude

read_kafka_messages

Claude

recommend_monitor_threshold

Claude

retry_datadog_ci_job

Claude

search_cws_agent_events

Claude

search_datadog_ci_pipeline_events

Claude

search_datadog_dashboards

Claude

search_datadog_database_plans

Claude

search_datadog_database_samples

Claude

search_datadog_dbm_plans

Claude

search_datadog_dbm_samples

Claude

search_datadog_error_tracking_issues

Claude

search_datadog_events

Claude

search_datadog_hosts

Claude

search_datadog_incidents

Claude

search_datadog_k8s_resources

Claude

search_datadog_logs

Claude

search_datadog_metrics

Claude

search_datadog_monitors

Claude

search_datadog_notebooks

Claude

search_datadog_rum_events

Claude

search_datadog_security_signals

Claude

search_datadog_service_dependencies

Claude

search_datadog_services

Claude

search_datadog_slos

Claude

search_datadog_spans

Claude

search_datadog_test_events

Claude

search_dora_deployments

Claude

search_llmobs_spans

Claude

search_ndm_devices

Claude

search_ndm_interfaces

Claude

search_network_device_configurations

Claude

search_pr_insights

Claude

search_security_findings

Claude

security_findings_schema

Claude

security_signals_schema

Claude

serverless_onboarding

Claude

source_map_uploads

Claude

studio_onboarding

Claude

submit_mcp_feedback

Claude

sync-allocations-for-feature-flag-environment

Claude

synthetics_test_wizard

Claude

test_optimization_onboarding

Claude

update-feature-flag-environment

Claude

update_datadog_error_tracking_issue

Claude

update_datadog_flaky_test_states

Claude

update_datadog_security_detection_rule

Claude

update_datadog_security_signals_triage

Claude

update_datadog_security_suppression

Claude

update_datadog_workflow_with_agent_trigger

Claude

upsert_datadog_dashboard

Claude

upsert_llmobs_evaluator

Claude

validate_dashboard_widget

Claude

validate_monitor_definition

Claude

visualize_tabular_data

Claude

App Stats

232

Tools

0

Prompts

Mar 10, 2026

First seen

ChatGPT, Claude

Platforms

Works with

ChatGPT
Claude

Data refreshed daily