Novita MCP Server

by novitalabs
MIT License
70
2

create-container-registry-auth

Generate and manage authentication credentials for container registries, specifying name, username, and password, to securely access and deploy containerized applications on the Novita MCP Server.

Input Schema

NameRequiredDescriptionDefault
nameYesName for the container registry auth.
passwordYesRegistry password.
usernameYesRegistry username.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "name": { "description": "Name for the container registry auth.", "maxLength": 255, "minLength": 1, "type": "string" }, "password": { "description": "Registry password.", "maxLength": 1024, "minLength": 1, "type": "string" }, "username": { "description": "Registry username.", "maxLength": 511, "minLength": 1, "type": "string" } }, "required": [ "name", "username", "password" ], "type": "object" }
ID: f1rv6j126v