Skip to main content
Glama
Hardik-Singh

Invariance MCP

Official
by Hardik-Singh

invariance_workflow_get

Read-only

Retrieve a workflow definition by its key to view process configuration and debug orchestration logic in Invariance.

Instructions

Get one workflow definition by workflow key.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
keyYesWorkflow key, e.g. "support.escalation".

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

A3.8/5.0
Behavior2/5

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

The description adds no behavioral detail beyond what the annotations already provide: readOnlyHint and openWorldHint. It does not mention error behavior for missing keys, response shape, or anything else about side effects, so it contributes little transparency beyond the structured metadata.

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, front-loaded with the action and resource. Every word contributes value for a tool this simple.

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

Completeness4/5

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

For a one-parameter, read-only getter with no output schema, the description is adequate. It says the operation returns a workflow definition, and the schema covers the key. It could mention error behavior or return structure, but the low complexity keeps the current text sufficient.

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?

The only parameter, `key`, is already fully described in the schema with a concrete example ('support.escalation'). The description adds no extra semantics, but the schema does not need compensation because coverage is 100%. Baseline of 3 is appropriate.

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 uses a specific verb ('get'), resource ('workflow definition'), and a lookup method ('by workflow key'). It clearly distinguishes this from the workflow_list/create/update/delete siblings by emphasizing a single definition retrieval.

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

Usage Guidelines4/5

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

The phrase 'one workflow definition by workflow key' makes it clear this is for retrieving a single workflow when the key is already known, versus listing all workflows. It provides clear context but does not explicitly name alternative tools or when-not-to-use conditions.

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