nolag_delete_actor
Delete an actor
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| actorId | Yes | Actor ID |
Delete an actor
| Name | Required | Description | Default |
|---|---|---|---|
| actorId | Yes | Actor 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?
With no annotations provided, the description carries the full burden of behavioral disclosure. It merely states 'Delete an actor' without mentioning permanence, cascading effects, permission requirements, or error handling. This is a destructive operation and the lack of detail is a significant gap.
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, short sentence with no wasted words, making it extremely concise. However, its brevity borders on under-specification for a destructive operation, but conciseness itself is well-handled.
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?
The tool has no output schema and no annotations, and the description provides only the minimal 'Delete an actor'. It lacks essential context about side effects, permanence, and return behavior, making it incomplete for safe and effective use.
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 fully documents the only parameter (actorId with description 'Actor ID'), and schema coverage is 100%. The description adds no additional meaning 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.
Does the description clearly state what the tool does and how it differs from similar tools?
The description 'Delete an actor' clearly states the action (delete) and the target resource (actor), which distinguishes it from sibling tools like nolag_update_actor or nolag_get_actor. It also differentiates among delete_* tools by specifying the resource.
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 no guidance on when to use this tool versus alternatives. It lacks prerequisites (e.g., actor must exist), warnings about irreversibility, or references to related tools like nolag_update_actor. There is no usage context at all.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.