mirror of
https://github.com/google/skills.git
synced 2026-09-14 20:00:20 +08:00
8d4081abad
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
9 lines
176 B
JSON
9 lines
176 B
JSON
{
|
|
"mcpServers": {
|
|
"developer-knowledge": {
|
|
"serverUrl": "https://developerknowledge.googleapis.com/mcp",
|
|
"authProviderType": "google_credentials"
|
|
}
|
|
}
|
|
}
|