delete-container-registry-auth
Remove container registry authentication credentials by specifying their ID. Use this tool to manage authentication settings efficiently on the Novita MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ID of the container registry auth to delete. Please ensure it exists before deleting. Before calling the MCP tool, please show me the name to help identify it. You can use the `list-container-registry-auths` tool to check the ID if needed. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "ID of the container registry auth to delete. Please ensure it exists before deleting. Before calling the MCP tool, please show me the name to help identify it. You can use the `list-container-registry-auths` tool to check the ID if needed.",
"minLength": 1,
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}