diff --git a/.changeset/patch-add-datadog-mcp-shared-workflow.md b/.changeset/patch-add-datadog-mcp-shared-workflow.md new file mode 100644 index 00000000000..d6a5efd5c82 --- /dev/null +++ b/.changeset/patch-add-datadog-mcp-shared-workflow.md @@ -0,0 +1,7 @@ +--- +"gh-aw": patch +--- + +Add Datadog MCP shared workflow configuration + +Adds a new shared Datadog MCP server configuration at `.github/workflows/shared/mcp/datadog.md` that enables agentic workflows to interact with Datadog's observability and monitoring platform. The configuration provides 10 tools for comprehensive Datadog access including monitors, dashboards, metrics, logs, events, and incidents with container-based deployment and multi-region support. diff --git a/.github/workflows/shared/mcp/datadog.md b/.github/workflows/shared/mcp/datadog.md new file mode 100644 index 00000000000..723410a4d55 --- /dev/null +++ b/.github/workflows/shared/mcp/datadog.md @@ -0,0 +1,94 @@ +--- +mcp-servers: + datadog: + container: "mcp/datadog" + env: + DD_API_KEY: "${{ secrets.DD_API_KEY }}" + DD_APP_KEY: "${{ secrets.DD_APP_KEY }}" + DD_SITE: "${{ secrets.DD_SITE || 'datadoghq.com' }}" + network: + allowed: + - datadoghq.com + - datadoghq.eu + - ddog-gov.com + - us5.datadoghq.com + - ap1.datadoghq.com + allowed: + - get-monitors + - get-monitor + - get-dashboards + - get-dashboard + - get-metrics + - get-metric-metadata + - get-events + - get-incidents + - search-logs + - aggregate-logs +--- + +