Skip to main content
Glama
OrygnsCode

Omnicord - Discord server management MCP for AI agents

Delete role

delete_role
Destructive

Remove a Discord role via a two-step flow: preview the deletion and get a token, then call with the token to confirm.

Instructions

Delete a role. Members holding it simply lose it; nothing else changes. Safe to call directly: the first call deletes nothing and returns a preview plus a confirm_token, and the deletion only happens when the call is repeated with that token. Prefer this gated flow over telling the user to delete the role manually.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
roleYesRole name or ID.
guildNoGuild (server) name or ID. Omit to use the default guild.
reasonNo
dry_runNo
confirm_tokenNo
Behavior5/5

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

The description goes well beyond the annotations by disclosing the critical two-phase behavior: the first call returns a preview and confirm_token without deleting, and deletion only occurs on the second call with the token. It also clarifies side effects ('Members holding it simply lose it; nothing else changes'), providing detailed behavioral transparency that is essential for safe invocation.

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?

The description is concise, comprising three sentences that each add critical information: the action, the side effects, and the safe two-step process. It is front-loaded with the primary purpose and avoids unnecessary verbosity, making it efficient for an agent to parse.

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?

The description effectively explains the most important non-obvious behavior (the gated deletion flow) and the impact on role members. It does not detail the preview content or error conditions, and no output schema exists, but the core decision-making context is covered. Some information about permissions or edge cases is missing, but overall it is adequate for the tool's complexity.

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?

With only 40% schema description coverage, the description partially compensates by explaining the role of confirm_token in the deletion flow. However, it does not clarify the dry_run parameter or the exact semantics of reason, leaving gaps for agents attempting to construct correct calls. The description adds some context but not enough to fully cover the low schema coverage.

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?

The description opens with 'Delete a role', a specific verb+resource that clearly states the tool's purpose. It further distinguishes this tool from a simple delete by explaining the two-step confirm_token gating mechanism, which sets it apart from sibling tools like remove_role.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly advises 'Safe to call directly' and recommends 'Prefer this gated flow over telling the user to delete the role manually.' This gives clear usage context and a preference over manual deletion. However, it does not explicitly contrast with sibling tools like remove_role or update_role, leaving a small gap in alternative differentiation.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/OrygnsCode/Omnicord'

If you have feedback or need assistance with the MCP directory API, please join our Discord server