fix(integrations): use Datadog MCP header names#407
Open
neubig wants to merge 1 commit into
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I have confirmed that this works in agent canvas.
Why
The Datadog integration catalog used the REST API-style
DD-API-KEYandDD-APPLICATION-KEYrequest headers for the hosted MCP server. Datadog's MCPdocumentation requires
DD_API_KEYandDD_APPLICATION_KEY, so clients thatsend the catalog fields verbatim receive a 403 response.
Summary
Issue Number
N/A
How to Test
The full test suite passes: 461 tests.
Video/Screenshots
N/A - catalog metadata only.
Notes
Datadog's ordinary REST API continues to use the hyphenated headers. This
change is limited to the hosted MCP integration metadata.
Tracking
Related to #363.
Tracking issue
Closes #411.
Live evidence
Validated the hosted Datadog MCP production endpoint on 2026-07-14 UTC using the corrected underscore header names. Credentials were sent only as redacted request headers.
https://mcp.us5.datadoghq.com/v1/mcpinitializereturned HTTP 200, protocol2025-06-18, serverdatadog-mcpversion1.0.0, and tools capability.tools/listreturned HTTP 200 with 3 tools:get_change_stories,list_datadog_skills, andload_datadog_skill.npm run build:integrations,python scripts/sync_extensions.py --check, anduv run pytest -q(461 tests).