Skip to main content
Glama

materialize

Writes PROTOCOL.md and host adapters into the working folder, composing stored protocol stanzas into actionable project guidance.

Instructions

Write PROTOCOL.md and configured host adapters into the working folder.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
projectNo
working_folderYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.12.0

TDQS

C2.8/5.0
Behavior2/5

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

With no annotations available, the description carries the full burden of behavioral disclosure. It states that files are written, but does not disclose whether existing files are overwritten, what permissions are needed, whether the folder is created, or what side effects beyond writing occur.

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 a single front-loaded sentence with no filler. Every word contributes to the core action, target, and destination.

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

Completeness2/5

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

Despite a small parameter set and an output schema, the description omits crucial context such as why project can be null, what artifacts are actually produced, and when materialize should be invoked in a workflow. An agent could not confidently select or call this tool correctly based on the description alone.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate. It clarifies that working_folder is the destination, but it never explains the optional project parameter or what 'configured host adapters' means in relation to parameters.

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?

The description names a specific action (write), concrete artifacts (PROTOCOL.md and configured host adapters), and a destination (working folder), so an agent can tell what the tool does. However, it does not explicitly differentiate it from siblings like resolve_protocol or get_stanza, and 'configured host adapters' remains somewhat ambiguous.

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

Usage Guidelines2/5

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

No guidance is provided on when to use this tool versus alternatives such as resolve_protocol, list_stanzas, or install_* operations. An agent must infer the appropriate context from the name and description alone.

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