delete_module
Delete one or more reusable modules by module_uuid.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| module_uuids | Yes | ||
| organization_uuid | Yes |
Delete one or more reusable modules by module_uuid.
| Name | Required | Description | Default |
|---|---|---|---|
| module_uuids | Yes | ||
| organization_uuid | Yes |
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 provided, so description carries full burden. It does not disclose behavioral traits such as irreversibility, effects on deployed revisions, or dependency checks. Minimal information.
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?
Single sentence, concise and to the point. Could add a bit more structure but no wasted words.
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?
No output schema or annotations; description is minimal. Does not cover return values, error cases, prerequisites (e.g., module must exist), or consequences. Incomplete for 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?
Schema coverage is 0%, requiring description to compensate. Description mentions 'by module_uuid' but does not explain module_uuids parameter (array) or organization_uuid. Lacks format, constraints, or relationships.
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?
Description clearly states the action (Delete), resource (reusable modules), and method (by module_uuid). Distinguishes from sibling tools like undeploy_module which likely undeploys without deleting.
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 on when to use this tool versus alternatives like undeploy_module or update_module. The description implies usage for deletion but lacks explicit context or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Every tool has a clearly distinct purpose, targeting either configs or modules with specific actions (create, get, list, delete, update, deploy, etc.). The only potential overlap is between edit_config and plan_config, but they serve different stages of config management (editing vs. authoring).
The naming follows a verb_noun pattern consistently (e.g., create_config, delete_config, list_configs). Minor inconsistency: 'list_configs' uses plural while most others use singular (config). Overall, the pattern is predictable and clear.
With 19 tools, the count is slightly above average but justified by the need to manage two resource types (configs and modules) with full lifecycle operations including deployment, revision handling, and validation. It is well-scoped for a configuration management server.
The tool surface is comprehensive, covering CRUD for both configs and modules, plus deployment, undeployment, toggling, revision management, editing via NL, planning, and validation. No obvious gaps for the intended domain.