Skip to main content
Glama

submit_workflow

Submit a workflow canvas for execution at a known revision, using a unique request ID to track the run.

Instructions

Submit a canvas for execution at a known revision, using a unique request_id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
canvas_idYes
request_idYes
expected_revisionYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.2/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 hints at idempotency via 'unique request_id' and revision-checking via 'known revision', but it does not state side effects, validation failures, or whether execution starts immediately.

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?

A single sentence with no filler; every phrase earns its place by adding a constraint or the core action.

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 state-changing submission tool with no annotations and three required parameters, the description is too thin. It does not explain what happens after submission, how to correlate with get_run, or how errors like revision mismatch are surfaced, even though an output schema exists.

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 0%, so the description must compensate. It adds meaning to expected_revision ('known revision') and request_id ('unique'), but provides no format, constraints, or relationship details for canvas_id.

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 uses a specific verb ('submit') and resource ('canvas for execution') and adds the key constraints of a known revision and unique request_id. It is clear enough to distinguish from siblings like get_workflow or edit_workflow, though it does not explicitly name them.

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

Usage Guidelines3/5

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

The phrase 'at a known revision' implies the appropriate context for calling the tool, but there is no explicit guidance on when to prefer this over sibling tools or what preconditions must hold before submission.

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