Skip to main content
Glama
sassoftware

SAS MCP Server

Official
by sassoftware

Update Decision Flow

update_decision_flow
DestructiveIdempotent

Modify an existing SAS Intelligent Decisioning flow by passing the full ordered list of rule set steps; the entire flow is replaced, not patched.

Instructions

Update an existing SAS Intelligent Decisioning flow.

Pass ALL rule set steps (existing + new) — the full flow is replaced on update, it is not a partial patch.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesDecision name (max 60 chars).
signatureYesFlow-level input/output variables.
decision_idYesThe existing decision flow UUID (not its name — list_decision_flows returns both).
descriptionNoOptional description.
rule_set_stepsYesOrdered list of rule set steps (see ``create_decision_flow`` for the shape).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv1.7.0
    • changedInput schema / properties / decision_id / description
      Previous value: -"The existing decision flow UUID."New value: +"The existing decision flow UUID (not its name — list_decision_flows returns both)."
  2. Addedv1.5.0

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already signal destructive and idempotent behavior, so the bar is lower. The description adds the crucial detail that the full flow is replaced and this is not a partial patch, which is meaningful behavioral context beyond the structured annotations. It does not cover prerequisites such as locking, but the core replace-vs-patch behavior is disclosed.

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?

Two sentences with no filler. The essential warning about full replacement is front-loaded and immediately informs the caller's main risk when invoking the tool.

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 5-parameter update tool with an output schema and informative annotations, the description covers the most important operational concern: full replacement. It does not mention prerequisites like locking or fetching current steps, but the description is adequate for an agent to invoke it correctly and avoid the primary mistake.

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

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description adds value by clarifying that rule_set_steps must include both existing and new steps, which is a critical semantic constraint not fully captured by the schema's reference to create_decision_flow for shape.

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?

Description states a specific verb and resource: 'Update an existing SAS Intelligent Decisioning flow.' It adds the key replacement semantics, which clearly separates it from create_decision_flow, get_decision_flow, and delete_decision_flow.

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 description explicitly tells callers to pass ALL rule set steps because the update replaces the whole flow rather than patching it. This is actionable when-to-use guidance. It does not name alternative tools explicitly, but 'existing' versus 'new' implies the create/update distinction.

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