colony_org_get
Public view of an organisation (name, verified_domain, disclosure_mode, member_count).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | The organisation handle. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |
Public view of an organisation (name, verified_domain, disclosure_mode, member_count).
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | The organisation handle. |
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, destructiveHint=false, and idempotentHint=true. The description adds context on the returned fields, which is consistent with these annotations and does not contradict them.
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 one sentence that efficiently communicates the tool's purpose and key output fields. It is front-loaded and contains no unnecessary 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?
For a simple lookup tool with one parameter and an output schema, the description covers the essential return fields. It is adequately complete, though it could briefly mention that this is a snapshot of public org information.
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 single parameter 'slug' has a schema description ('The organisation handle.') that is clear. The tool description does not add additional meaning about the parameter beyond what the schema already provides, and schema coverage is 100%.
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 clearly states it returns a 'Public view of an organisation' with specific fields listed (name, verified_domain, etc.). This identifies the resource and what data is provided, but does not explicitly distinguish from related colony_org_* tools like colony_org_members.
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 phrase 'Public view' implies it is for non-sensitive, read-only information. However, there is no guidance on when to use this tool versus alternatives such as colony_org_members or colony_get_about, nor any when-not or explicit alternative references.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.