Skip to main content
Glama
calebn
by calebn

pipeline_set_config_tool

Update shared pipeline settings for podcast production, specifying project path, configuration, and enabled steps to align GUI and agent workflows.

Instructions

Update the shared GUI/agent pipeline working set (visible params).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
resetNo
unattendedNo
config_jsonNo
project_pathYes
enabled_steps_jsonNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.4/5.0
Behavior2/5

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

With no annotations, the description carries the full behavioral burden but only states that it updates the working set. It does not disclose whether changes are persistent, whether reset semantics replace or merge values, or whether the mutation can affect a currently running pipeline.

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

Conciseness3/5

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

The description is short and front-loaded, but brevity is achieved at the cost of substance. It reads like a one-line summary rather than a useful definition, and the term 'working set (visible params)' is vague.

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

Completeness1/5

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

For a five-parameter tool with no annotation coverage, 0% schema description coverage, and JSON-serialized config inputs, the description is far too thin. Even with an output schema present, the agent lacks the context needed to know what config_json or enabled_steps_json should contain.

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

Parameters1/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, but it does not explain any of the five parameters. A required project_path, boolean reset, and nullable JSON config/enabled_steps fields all need at least brief semantics; none are provided.

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 concrete verb ('Update') and a specific resource ('shared GUI/agent pipeline working set'), which establishes it as the mutation counterpart to pipeline_get_config_tool. The phrase 'visible params' is somewhat vague, but the tool's role is distinguishable from pipeline_run and pipeline_get_config_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?

There is no guidance on when to call this tool versus alternatives like pipeline_get_config_tool or pipeline_run. It does not state prerequisites, when it should precede a pipeline run, or what happens if the working set already has pending changes.

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