Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
DD_SITE | No | Your Datadog site domain (e.g., datadoghq.com, datadoghq.eu, us5.datadoghq.com) | datadoghq.com |
DD_API_KEY | Yes | Your Datadog API key found in Organization Settings > API Keys | |
DD_APP_KEY | Yes | Your Datadog Application key found in Organization Settings > Application Keys |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
No prompts |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
get-monitors | Fetch monitors from Datadog with optional filtering. Use groupStates to filter by monitor status (e.g., 'alert', 'warn', 'no data'), tags or monitorTags to filter by tag criteria, and limit to control result size. |
get-monitor | Get detailed information about a specific Datadog monitor by its ID. Use this to retrieve the complete configuration, status, and other details of a single monitor. |
get-dashboards | Retrieve a list of all dashboards from Datadog. Useful for discovering available dashboards and their IDs for further exploration. |
get-dashboard | Get the complete definition of a specific Datadog dashboard by its ID. Returns all widgets, layout, and configuration details. |
get-metrics | List available metrics from Datadog. Optionally use the q parameter to search for specific metrics matching a pattern. Helpful for discovering metrics to use in monitors or dashboards. |
get-metric-metadata | Retrieve detailed metadata about a specific metric, including its type, description, unit, and other attributes. Use this to understand a metric's meaning and proper usage. |
get-events | Search for events in Datadog within a specified time range. Events include deployments, alerts, comments, and other activities. Useful for correlating system behaviors with specific events. |
get-incidents | List incidents from Datadog's incident management system. Can filter by active/archived status and use query strings to find specific incidents. Helpful for reviewing current or past incidents. |
search-logs | Search logs in Datadog with advanced filtering options. Use filter.query for search terms (e.g., 'service:web-app status:error'), from/to for time ranges (e.g., 'now-15m', 'now'), and sort to order results. Essential for investigating application issues. |
aggregate-logs | Perform analytical queries and aggregations on log data. Essential for calculating metrics (count, avg, sum, etc.), grouping data by fields, and creating statistical summaries from logs. Use this when you need to analyze patterns or extract metrics from log data. |