nolag_delete_scope
Delete an access scope. Fails if actors are still assigned to it.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| scopeId | Yes | Access scope ID |
Delete an access scope. Fails if actors are still assigned to it.
| Name | Required | Description | Default |
|---|---|---|---|
| scopeId | Yes | Access scope ID |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the burden of behavioral disclosure. It reveals a key failure mode (actors still assigned) but does not address other aspects like reversibility, return values, or required permissions. The description adds some value but is not comprehensive.
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 two sentences, front-loaded with the core action, and provides a critical constraint without waste. Every word contributes.
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 simple single-parameter delete tool with no output schema, the description is quite complete. It states the primary action and a necessary precondition/failure mode. It could mention idempotency or return type, but these are not critical for understanding how to invoke the tool.
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?
The input schema has 100% coverage for the single parameter (scopeId) with description 'Access scope ID'. The tool description does not add additional meaning beyond what the schema already provides, so baseline 3 is appropriate.
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 clearly states the action: 'Delete an access scope.' It uses a specific verb and resource, distinguishing it from sibling tools like nolag_create_scope, nolag_get_scope, and nolag_update_scope.
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?
The description provides usage context by noting the failure condition: 'Fails if actors are still assigned to it.' This implicitly tells the agent to ensure no actors are assigned before calling. It does not explicitly name alternatives, but the purpose is clear enough among siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.