list-container-registry-auths
Retrieve configured container registry authentication credentials from the RunPod MCP Server to manage access for container deployments.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:743-754 (registration)Registration of the 'list-container-registry-auths' tool with an inline handler that retrieves the list of container registry authentications via the runpodRequest helper and returns it as JSON-formatted text.server.tool('list-container-registry-auths', {}, async () => { const result = await runpodRequest('/containerregistryauth'); return { content: [ { type: 'text', text: JSON.stringify(result, null, 2), }, ], }; });