Skip to main content
Glama

set_parameters

Update, query, or reset execution parameters for active behavior runtimes. Enables dynamic configuration changes without interruption.

Instructions

Dynamically update or query execution parameters for the active behavior runtime.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
actionYes
projectNo
parametersNo
execution_idNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.2

TDQS

C2.7/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 burden of behavioral disclosure. It only says 'update or query' and does not mention the reset action, side effects, persistence, whether changes affect a running execution, or what response the caller receives.

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 front-loaded sentence with no filler, making it easy to parse. It is concise, though 'dynamically' adds little and the extreme brevity comes at the cost of useful structural detail.

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?

For a tool with four parameters, a nested object, no output schema, and no annotations, this description is insufficient. An agent is left without knowledge of what each action does, how parameters are targeted, whether changes are reversible, or what a successful call returns.

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 only mentions 'execution parameters' and provides no explanation of the action enum values, the roles of project and execution_id, or the expected shape of the parameters object. The schema lists properties but adds no semantic meaning.

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 identifies a specific resource ('execution parameters') and action ('update or query'), plus the scope ('active behavior runtime'). However, it omits the 'reset' action from the schema and does not explicitly distinguish itself from sibling tools like manage_blackboard or manage_runtime_db.

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 use this tool versus alternatives, no exclusions, and no stated prerequisites. The phrase 'active behavior runtime' only weakly implies applicability, and no sibling tool is referenced as a substitute or complement.

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