Skip to main content
Glama
sassoftware

SAS MCP Server

Official
by sassoftware

Unassign Glossary Term

unassign_glossary_term
DestructiveIdempotent

Remove a glossary term assignment from a table column without deleting the term or column. Use this to correct misassigned metadata while preserving both the dictionary term and the column.

Instructions

Remove a business term's assignment from a table column.

Deletes only the link: the term and the column both survive. Use delete_glossary_term to remove the term from the dictionary itself.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
term_idNoThe glossary term UUID.
term_nameNoExact term name, if the id is not known. One of the two is required.
table_nameNoTable name, if the URI is not known.
column_nameYesThe column to detach the term from (case-insensitive).
resource_uriNoThe table's source URI (preferred).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.14.0

TDQS

A4.7/5.0
Behavior5/5

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

Annotations already carry destructiveHint=true, but the description adds the key nuance: 'Deletes only the link: the term and the column both survive.' This tells the agent exactly what is destroyed and what is preserved, which is precisely the kind of context annotations cannot express.

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?

Three short sentences with no filler; the core action is front-loaded, the behavioral caveat follows immediately, and the alternative is given in one clause.

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?

Given full schema coverage, an output schema, and annotations covering read/write/idempotence/destruction, the description covers purpose, side effects, and the relevant sibling. Nothing needed to call the tool correctly is missing.

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%, so the schema already documents all five parameters. The description itself adds no parameter-level detail beyond naming the target column, meeting the baseline but not exceeding it.

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?

States a specific verb and resource: 'Remove a business term's assignment from a table column.' It also distinguishes itself from the sibling delete_glossary_term by clarifying 'the term and the column both survive.'

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

Usage Guidelines5/5

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

Explicitly names the alternative: 'Use delete_glossary_term to remove the term from the dictionary itself.' This tells the agent when to use this tool versus the destructive sibling and implies the normal-scope use case for this tool.

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