Skip to main content
Glama
runwhen-contrib

RunWhen Platform MCP

Get Registry Codebundle

get_registry_codebundle

Fetch full details for a specific registry codebundle, including configuration templates, environment variables, and deployment instructions. Use after a registry search.

Instructions

Get full details of a specific codebundle from the registry.

Use after search_registry to get complete information including configuration templates, environment variables, and deployment instructions.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
codebundle_slugYesThe codebundle slug (e.g. 'k8s-podresources-health').
collection_slugYesThe codecollection slug (e.g. 'rw-cli-codecollection').

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior3/5

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

No annotations are provided, so the description carries the behavioral burden. It implies a read-only lookup and names the payload contents (configuration templates, environment variables, deployment instructions), but says nothing about permissions, auth, rate limits, or failure behavior. Adequate for a simple fetch, but thin given zero annotation coverage.

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

Conciseness4/5

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

Two short sentences; the core action is front-loaded and the follow-up sentence carries useful sequencing information rather than filler. Nothing is redundant, though it is slightly terse given no annotations.

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

Completeness4/5

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

An output schema exists, so the description need not enumerate return fields, and it still previews the kind of content returned. Combined with the search-then-get workflow guidance, an agent has enough to invoke it correctly; only permission/error behavior is unaddressed.

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

Parameters3/5

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

Schema description coverage is 100% and both required slugs are documented with concrete examples ('k8s-podresources-health', 'rw-cli-codecollection'), so the schema does the heavy lifting. The description adds no additional parameter meaning beyond what the schema already provides, which is the defined baseline.

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

Purpose4/5

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

States a specific verb and resource ('Get full details of a specific codebundle from the registry'), which is clearly distinct from the sibling search_registry and deploy_registry_codebundle. It does not name those siblings explicitly, but the scope is unambiguous.

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

Usage Guidelines4/5

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

Explicitly positions the tool in a workflow: 'Use after search_registry to get complete information.' That tells the agent when to reach for this rather than the search tool. It stops short of stating when NOT to use it (e.g., to deploy, use deploy_registry_codebundle), so it is not a 5.

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