Deploy MCP Server
Monitoring API Key

Datadog REST API

Cloud monitoring and observability platform API

Datadog provides comprehensive monitoring and analytics for cloud-scale applications, infrastructure, and logs. The REST API enables developers to programmatically submit metrics, query monitoring data, manage dashboards and alerts, and integrate Datadog's observability features into their applications and workflows. It's essential for DevOps automation, custom integrations, and building monitoring solutions at scale.

Base URL https://api.datadoghq.com/api/v1

API Endpoints

MethodEndpointDescription
POST/seriesSubmit time series data points to Datadog for custom metrics monitoring
POST/check_runSubmit service check status updates for monitoring service health
POST/eventsCreate events to track deployments, alerts, or application changes
GET/queryQuery time series data using Datadog's metric query language
GET/dashboardList all dashboards in your Datadog account
POST/dashboardCreate a new dashboard with custom widgets and visualizations
GET/monitorRetrieve all monitors configured in your account
POST/monitorCreate a new monitor with alerting rules and notification channels
PUT/monitor/{monitor_id}/muteMute or unmute a specific monitor to suppress alerts temporarily
GET/logs-queries/listExecute log queries and retrieve matching log events
GET/hostsList all hosts reporting to Datadog with their metadata and tags
GET/tags/hostsGet all tags associated with hosts for filtering and organization
POST/downtimeSchedule maintenance downtime windows to suppress alerts
GET/usage/timeseriesRetrieve usage metrics for cost tracking and capacity planning
POST/integration/webhooksConfigure webhook integrations for alert notifications

Code Examples

curl -X POST "https://api.datadoghq.com/api/v1/series" \
  -H "Content-Type: application/json" \
  -H "DD-API-KEY: ${DD_API_KEY}" \
  -d '{
    "series": [{
      "metric": "custom.api.requests",
      "points": [[1234567890, 42.5]],
      "type": "count",
      "tags": ["env:production", "service:api"]
    }]
  }'

Connect Datadog to AI

Deploy a Datadog MCP server on IOX Cloud and connect it to Claude, ChatGPT, Cursor, or any AI client. Your AI assistant gets direct access to Datadog through these tools:

submit_metrics Submit custom metrics and performance data to Datadog for monitoring application health and business KPIs
query_metrics Query and analyze time series metrics data to answer questions about system performance, trends, and anomalies
manage_monitors Create, update, or retrieve monitoring alerts and their current status to automate incident response
search_logs Search and filter log data to troubleshoot issues, investigate incidents, or extract insights from application logs
create_dashboard Programmatically create and update dashboards to visualize metrics and provide custom monitoring views

Deploy in 60 seconds

Describe what you need, AI generates the code, and IOX deploys it globally.

Deploy Datadog MCP Server →

Related APIs