Skip to main content
Glama
sassoftware

SAS MCP Server

Official
by sassoftware

Delete Business Rule

delete_business_rule
DestructiveIdempotent

Permanently remove a business rule from its SAS rule set by providing the rule and parent rule set UUIDs. Clean up obsolete rules to keep rule sets accurate.

Instructions

Permanently delete a rule from a SAS Business Rules rule set.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
rule_idYesThe rule UUID to delete.
ruleset_idYesThe parent rule set UUID (not its name — list_business_rulesets returns both).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv1.7.0
    • changedInput schema / properties / ruleset_id / description
      Previous value: -"The parent rule set UUID."New value: +"The parent rule set UUID (not its name — list_business_rulesets returns both)."
  2. Addedv1.5.0

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already declare destructiveHint and idempotentHint. The description adds 'Permanently' to reinforce irreversibility and narrows the target to a single rule within a rule set, but does not disclose additional behavior such as effect on the parent rule set or response on repeated deletes.

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 focused sentence with the action and object front-loaded; no filler or repetition of structured fields.

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 simple two-parameter delete operation, the description, 100% schema coverage, idempotent/destructive annotations, and presence of an output schema cover the essentials. A brief note on prerequisite existence or effect on the ruleset would round it out, but nothing critical 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 coverage is 100% and both parameters already have clear descriptions, including the important guidance that ruleset_id expects a UUID, not a name. The tool description itself adds no parameter information beyond what the schema provides, so baseline 3 applies.

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 action ('Permanently delete') and a specific resource ('a rule from a SAS Business Rules rule set'), clearly distinguishing it from sibling tools like delete_business_ruleset or update_business_rule.

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 description implies the tool should be used when a rule must be permanently removed, and 'permanently' signals irreversibility, but it does not explicitly contrast with update/get/list alternatives or state any prerequisites or exclusions.

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