Skip to main content
Glama
sassoftware

SAS MCP Server

Official
by sassoftware

Get Mas Module Step Signature

get_mas_module_step_signature
Read-onlyIdempotent

Fetch a MAS module step's input/output signature to obtain exact variable names, types, and order before scoring data. Use it to prepare valid inputs and anticipate expected outputs.

Instructions

Fetch a MAS module step's input/output variable signature.

Call before score_data to know the exact variable names, types, and order to pass as inputs, and what outputs to expect.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
step_idNoThe step within the module to inspect (default "execute").execute
module_idYesThe MAS module ID (see ``list_mas_modules``).

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 / module_id / description
      Previous value: -"The MAS module ID (see ``list_models_and_decisions``)."New value: +"The MAS module ID (see ``list_mas_modules``)."
  2. Addedv1.5.0

TDQS

A3.9/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds workflow context (call before score_data) but does not disclose additional behavioral traits such as error conditions or authorization requirements. Given the annotations, this is adequate but not rich.

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 concise sentences: the first states the tool's function, the second provides crucial usage context. Every word earns its place, and the key action 'Fetch' is front-loaded.

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

Completeness5/5

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

The tool is a simple read-only introspection with a complete output schema, fully documented parameters, and safety annotations. The description adds the missing workflow context (prerequisite for score_data), making the definition complete for an agent.

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 100%, with both module_id and step_id clearly described in the input schema. The description adds no parameter-level detail beyond what the schema already provides, so the baseline score of 3 applies.

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 'Fetch' and resource 'a MAS module step's input/output variable signature', making the core purpose clear. It does not explicitly contrast with sibling tools, but the resource is unique enough among siblings that confusion is unlikely.

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 advises calling this tool before 'score_data' and explains what information it provides (variable names, types, order, expected outputs). This is clear when-to-use guidance, though it does not mention when not to use it or list alternative tools for the same need.

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