datadog-mcp 5.4.0 → 5.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -122,12 +122,13 @@ When running with `--transport=http`:
122
122
  | `monitors` | list | Alerting | List monitors with optional filters | `monitors_read` |
123
123
  | `monitors` | get | Alerting | Get monitor by ID | `monitors_read` |
124
124
  | `monitors` | search | Alerting | Search monitors by query | `monitors_read` |
125
- | `monitors` | create | Alerting | Create a new monitor | `monitors_write` |
126
- | `monitors` | update | Alerting | Update an existing monitor | `monitors_write` |
125
+ | `monitors` | create | Alerting | Create a new monitor; `config` is validated against a typed schema covering documented options (notifyNoData, renotifyInterval, thresholds, …) — unknown keys surface in `warnings` | `monitors_write` |
126
+ | `monitors` | update | Alerting | Update an existing monitor; same validated schema as `create`; partial configs accepted; validation errors short-circuit before any HTTP call as `EINVALID_MONITOR_CONFIG:` | `monitors_write` |
127
127
  | `monitors` | delete | Alerting | Delete a monitor | `monitors_write` |
128
128
  | `monitors` | mute | Alerting | Mute a monitor | `monitors_write` |
129
129
  | `monitors` | unmute | Alerting | Unmute a monitor | `monitors_write` |
130
- | `monitors` | top | Alerting | Top N monitors by alert frequency with real monitor names and context breakdown. Groups without context tags are included as "no_context" | `monitors_read` |
130
+ | `monitors` | top | Alerting | Top N monitors by alert frequency with real monitor names and context breakdown. **WARNING:** `total_count` includes renotifies/re-evaluations (Datadog emits a renotify event every `renotify_interval` minutes while Alert). For real fires use `action=history`. | `monitors_read` |
131
+ | `monitors` | history | Alerting | Count and list real state transitions for one monitor over a time window. Filters by `transitionType` (default `["alert","alert recovery"]` — fires+recoveries, excludes renotifies) and optional `group`. Returns `{transitions: [...], count, meta}` where `count` is the number of real transitions (e.g. for one always-Alert burn-rate monitor over 7d: 98 raw events vs **38 real transitions**). | `monitors_read`, `events_read` |
131
132
  | `dashboards` | list | Visualization | List all dashboards | `dashboards_read` |
132
133
  | `dashboards` | get | Visualization | Get dashboard by ID | `dashboards_read` |
133
134
  | `dashboards` | create | Visualization | Create a new dashboard | `dashboards_write` |
@@ -135,6 +136,15 @@ When running with `--transport=http`:
135
136
  | `dashboards` | delete | Visualization | Delete a dashboard | `dashboards_write` |
136
137
  | `logs` | search | Logs | Search logs with query syntax and filters | `logs_read_data`, `logs_read_index_data` |
137
138
  | `logs` | aggregate | Logs | Aggregate log data with groupBy | `logs_read_data` |
139
+ | `logs_pipelines` | list, get | Logs Config | Inspect log processing pipelines and their processors | `logs_read_config` |
140
+ | `logs_pipelines` | create, update, delete, reorder | Logs Config | Author pipelines and processor chains | `logs_write_config` |
141
+ | `logs_pipelines` | get_order | Logs Config | Read pipeline evaluation order | `logs_read_config` |
142
+ | `logs_indexes` | list, get | Logs Config | Inspect indexes (filter, retention, Flex tier, exclusion filters); `create`/`delete` are UI-only per Datadog and not exposed | `logs_read_config` |
143
+ | `logs_indexes` | update, reorder | Logs Config | Update index filter/retention/quota and reorder evaluation | `logs_write_config` |
144
+ | `logs_indexes` | get_order | Logs Config | Read index evaluation order | `logs_read_config` |
145
+ | `logs_archives` | list, get | Logs Config | Inspect log archives (S3 / GCS / Azure destinations); per-provider credential fields are forwarded unchanged | `logs_read_archives` |
146
+ | `logs_archives` | create, update, delete, reorder | Logs Config | Manage archive destinations; `destination.type` validated against `s3 | gcs | azure_storage` before SDK call | `logs_write_archives` |
147
+ | `logs_archives` | get_order | Logs Config | Read archive evaluation order | `logs_read_archives` |
138
148
  | `metrics` | query | Metrics | Query timeseries data | `metrics_read`, `timeseries_query` |
139
149
  | `metrics` | search | Metrics | Search for metrics by name | `metrics_read` |
140
150
  | `metrics` | list | Metrics | List active metrics | `metrics_read` |
@@ -145,7 +155,7 @@ When running with `--transport=http`:
145
155
  | `events` | list | Events | List events | `events_read` |
146
156
  | `events` | get | Events | Get event by ID | `events_read` |
147
157
  | `events` | create | Events | Create an event | `events_read` |
148
- | `events` | search | Events | Search events with v2 API and cursor pagination | `events_read` |
158
+ | `events` | search | Events | Search events with v2 API and cursor pagination. Optional `transitionType` filter (e.g. `["alert","alert recovery"]`) restricts to monitor state-transition events — without it, `source:alert` includes renotifies. For monitor-specific fires use `monitors action=history`. | `events_read` |
149
159
  | `events` | aggregate | Events | Client-side aggregation by monitor_name, source, etc. | `events_read` |
150
160
  | `events` | top | Events | Top N event groups by count with generic groupBy support (deployments, configs, alerts, etc.). Groups without context tags are included as "no_context" | `events_read` |
151
161
  | `events` | timeseries | Events | Time-bucketed alert trends (hourly/daily counts) | `events_read` |