Skip to main content
Glama

create_library_tool

Create a documented, reusable prompt tool with manifest, README, and launcher script, converting stable workflows into shareable library assets.

Instructions

Create a documented reusable prompt tool with a manifest, README, and launcher script.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
tagsNo
taskYes
activateNo
triggersNo
descriptionYes
prompt_templateYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.4.1

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description bears full responsibility for behavioral disclosure. It says what artifacts are created but does not mention side effects like filesystem writes, registry updates, approval requirements, activation consequences, or whether the operation can be undone. The 'activate' parameter further hints at side effects that are not explained.

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?

The description is a single efficient sentence with no filler and front-loads the action. It is concise, but its brevity comes at the cost of important behavioral and parameter guidance.

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?

Given 7 parameters, 0% schema description coverage, no annotations, and a create operation in a library-management workflow, the description is too sparse. The output schema may document return values, but the agent still lacks needed context about lifecycle, approval, activation, and side effects, leaving the description incomplete for correct invocation.

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% and the description does not compensate. It does not explain meaning of tags, activate, or triggers, which are non-obvious and have no descriptions in the schema. Although name, description, task, and prompt_template are somewhat inferable from context, the tool's own documentation adds no parameter-level value.

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 names a specific verb ('Create') and a resource ('documented reusable prompt tool'), and identifies concrete outputs (manifest, README, launcher script). This clearly separates it from sibling tools like list_library_tools, read_library_tool, run_library_tool, and disable_library_tool.

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?

The description gives no guidance on when to use this tool versus alternatives, nor does it mention prerequisites, approval workflows, or whether activation is automatic. With siblings like approve_library_tool and disable_library_tool nearby, an agent cannot tell when creation requires follow-up.

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