get_guilds
List Discord guild metadata to view available servers and their details for easier navigation.
Instructions
List guild metadata available to the Discord client.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
List Discord guild metadata to view available servers and their details for easier navigation.
List guild metadata available to the Discord client.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
v0.1.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already declare readOnlyHint, idempotentHint, non-destructiveHint, and openWorldHint, so the safety profile is clear. The description adds minimal behavioral context beyond the phrase 'available to the Discord client'; it does not detail return behavior, data freshness, or any client-connection requirements.
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, front-loaded sentence with no filler. It states the operation and the resource immediately, making it easy for an agent to parse quickly.
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 no-parameter list operation, the description is adequately complete: it indicates the result type (a list of guild metadata) and the data scope (what the Discord client has available). There is no output schema, so slightly more detail about the returned metadata fields could improve completeness, but it is not necessary for correct invocation.
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 tool has zero parameters and the schema coverage is effectively 100%, so there are no parameter semantics for the description to clarify. The baseline of 4 applies because no parameter documentation is needed.
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 uses a specific verb ('List') and a clear resource ('guild metadata'), and signals a plural, list-style operation that distinguishes it from singular counterparts like get_guild. The scope 'available to the Discord client' further clarifies what data is returned.
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 implies the tool should be used when a list of guild metadata is needed, but it does not explicitly state when to prefer it over get_guild or mention any other alternatives. There are no exclusions or conditional guidance, so usage is inferred rather than stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.