Skip to main content
Glama
rsp2k
by rsp2k

registry_generate_docker_credentials

Generate Docker credentials for a Vultr container registry. Specify registry name or ID, set expiry and access level to get username, password, and registry URL.

Instructions

Generate Docker credentials for container registry access.

Smart identifier resolution: Use registry name or ID.

Args: registry_identifier: Registry name or ID expiry_seconds: Expiration time in seconds (optional, default: no expiry) read_write: Whether to grant read-write access (default: True, False for read-only)

Returns: Docker credentials including username, password, and registry URL

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
read_writeNo
expiry_secondsNo
registry_identifierYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.0.1

TDQS

A3.8/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full behavioral burden, but it only discloses that it accepts name or ID and returns credentials. It does not mention side effects (e.g., whether existing credentials are invalidated), required permissions, or reversibility. For a credential-generation tool, this is a significant gap, so the score is low.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise and well-structured, with a one-line purpose, a brief note on identifier resolution, and a clean Args/Returns format. It is front-loaded with the purpose and avoids unnecessary details, making it easy for an agent to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the output schema exists, the description need not detail return structure, but it does. It covers all parameters and their defaults, and the purpose is clear. However, it lacks guidance on when to use this versus sibling credential tools, and it does not mention any prerequisites or security considerations, so completeness is moderate.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has no property descriptions (0% coverage), so the description's Args section is the sole documentation for all three parameters. It explains registry_identifier as 'Registry name or ID', expiry_seconds as optional with default, and read_write as a boolean with default and meaning. This fully compensates for the missing schema descriptions, making parameter meaning clear.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states 'Generate Docker credentials for container registry access' with a specific verb and resource, and the Args section clarifies the identifier resolution. It is distinct from siblings like registry_generate_kubernetes_credentials and registry_get_docker_login_command by specifying Docker credentials, so the agent can differentiate without opening other tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description does not explicitly state when to use this tool versus alternatives, such as registry_get_docker_login_command or registry_generate_kubernetes_credentials. It implies usage for Docker credential generation but offers no exclusions or conditions. The 'Smart identifier resolution' note is about parameter selection, not tool selection, so guidance is minimal.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Deploy Server

Other Tools