servicenow_delete_flow
Delete a ServiceNow Flow record using its sys_id to remove unwanted flows from a Personal Developer Instance.
Instructions
Delete one ServiceNow Flow record by sys_id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sysId | Yes |
Delete a ServiceNow Flow record using its sys_id to remove unwanted flows from a Personal Developer Instance.
Delete one ServiceNow Flow record by sys_id.
| Name | Required | Description | Default |
|---|---|---|---|
| sysId | Yes |
Changes observed during successful MCP inspections.
v1.0.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description must carry the full behavioral burden. It states that the operation deletes a record, implying mutation and likely irreversibility, but does not disclose permissions required, whether deletion is permanent, or any side effects.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single front-loaded sentence with no wasted words, clearly conveying the action and target identifier.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a destructive mutation tool with no annotations and no output schema, the description is too sparse. It omits critical context such as prerequisites, consequences of deletion, and any distinction from other delete-like siblings.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It only repeats the parameter name ('sys_id') without adding format, source, or validation details, providing minimal semantic value beyond the schema's property name.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Delete') and a precise resource ('ServiceNow Flow record') with an identifier ('by sys_id'). It distinguishes itself from sibling operations like delete_record and get_flow without ambiguity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is offered on when to use this tool versus alternatives such as servicenow_delete_record or when deletion is appropriate. The description only states what the tool does, not when or why to invoke it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.