Files
Cloud IX Team 8d4081abad 🐛 fix(plugins): add authProviderType to google-cloud-developer mcp_config.json
The google-cloud-developer plugin declares the Developer Knowledge MCP server
in mcp_config.json with only a serverUrl. The repository's own documentation,
in skills/cloud/gcloud/references/mcp-usage.md, states that
"authProviderType": "google_credentials" is mandatory, and that omitting it
causes the client to send unauthenticated requests and receive 401
Unauthorized errors.

The sibling gemini-extension.json already carries the field. This adds it to
mcp_config.json so clients reading that descriptor attach Application Default
Credentials rather than calling the server anonymously.

PiperOrigin-RevId: 979969884
2026-09-11 12:54:13 -07:00

9 lines
176 B
JSON

{
"mcpServers": {
"developer-knowledge": {
"serverUrl": "https://developerknowledge.googleapis.com/mcp",
"authProviderType": "google_credentials"
}
}
}