Skip to main content
Glama

discord_timeout_member

Idempotent

Prevent disruptive Discord members from sending messages, reacting, or speaking for up to 28 days. Set duration_minutes to 0 to end the timeout early.

Instructions

Mute a member for a set duration (Discord 'timeout'): they cannot send messages, react, or speak until it expires. Pass duration_minutes = 0 to remove an active timeout early. Max 28 days (40320 minutes). Requires the Moderate Members permission.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
reasonNoOptional reason recorded in the server audit log.
user_idYesDiscord user ID (snowflake) of the member to time out.
guild_idYesDiscord server (guild) ID (snowflake).
duration_minutesYesTimeout length in minutes (0–40320, i.e. up to 28 days). Use 0 to clear an existing timeout.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv2.2.0
    • addedInput schema / additionalProperties
      Added value: +false
  2. Changed6 schema fields changedv2.0.0
    • changedInput schema / properties / duration_minutes / description
      Previous value: -"Timeout length in minutes (1–40320, i.e. up to 28 days). Use 0 to clear an existing timeout."New value: +"Timeout length in minutes (0–40320, i.e. up to 28 days). Use 0 to clear an existing timeout."
    • addedInput schema / properties / duration_minutes / maximum
      Added value: +40320
    • addedInput schema / properties / duration_minutes / minimum
      Added value: +0
    • changedInput schema / properties / duration_minutes / type
      Previous value: -"number"New value: +"integer"
    • addedInput schema / properties / guild_id / pattern
      Added value: +"^\\d{17,20}$"
    • addedInput schema / properties / user_id / pattern
      Added value: +"^\\d{17,20}$"
  3. Changed4 schema fields changedv1.6.0
    • addedInput schema / properties / duration_minutes / description
      Added value: +"Timeout length in minutes (1–40320, i.e. up to 28 days). Use 0 to clear an existing timeout."
    • addedInput schema / properties / guild_id / description
      Added value: +"Discord server (guild) ID (snowflake)."
    • addedInput schema / properties / reason / description
      Added value: +"Optional reason recorded in the server audit log."
    • addedInput schema / properties / user_id / description
      Added value: +"Discord user ID (snowflake) of the member to time out."
  4. Addedv1.5.0
  5. Removedv1.0.0
  6. First observedv0.1.0

TDQS

A4.5/5.0
Behavior5/5

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

Annotations already mark this as non-readOnly, idempotent, and non-destructive. The description adds valuable behavioral detail beyond those hints: exactly what the timeout prevents, that duration_minutes = 0 clears an active timeout early, the 28-day maximum, and the permission requirement. There is no contradiction with the annotations.

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?

Three sentences, all load-bearing: the main effect, the zero-duration edge case, and the permission prerequisite. The most important information is front-loaded, and there is no filler or redundant restatement of the tool name.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple 4-parameter mutation tool with no output schema, this description is complete enough for correct invocation: it explains the timeout effect, early removal, maximum duration, and required permission. The parameter details are fully covered by the schema, and no critical behavioral gap remains.

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?

Schema description coverage is 100%, and the schema already documents duration bounds (0–40320), the 'Use 0 to clear' behavior, and the format of guild_id and user_id. The description repeats the 0-clear rule and max duration but does not add meaningful parameter-level semantics beyond what the schema provides, so the baseline of 3 is appropriate.

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 a specific verb and resource: 'Mute a member for a set duration (Discord timeout)' and lists the concrete behavioral effects (cannot send messages, react, or speak). This clearly distinguishes it from permanent moderation siblings like kick_member and ban_member, and the title 'Timeout member' reinforces the same idea.

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 gives clear context for when to use the tool: temporary muting with a configurable duration, plus the special case of passing 0 to remove an active timeout. It also states the required 'Moderate Members' permission. It does not explicitly compare to alternatives like ban_member or kick_member, but the timeout semantics make the intended use case clear.

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

Deploy Server

Other Tools