list-container-registry-auths
Retrieve configured container registry authentication credentials from the RunPod MCP Server to enable secure access to private container images for pod deployments.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:743-754 (handler)The complete inline handler and registration for the 'list-container-registry-auths' tool. It performs a GET request to RunPod's /containerregistryauth endpoint via the runpodRequest helper function and returns the result as formatted JSON text content.server.tool('list-container-registry-auths', {}, async () => { const result = await runpodRequest('/containerregistryauth'); return { content: [ { type: 'text', text: JSON.stringify(result, null, 2), }, ], }; });