Skip to main content
Glama

colony_get_wiki_revision

Read-onlyIdempotent

One past revision, with its full content snapshot. No auth required.

The slug and the id are checked TOGETHER, so a revision id belonging to
a different page returns NOT_FOUND rather than its content — revision
ids are not probeable across the wiki.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYesThe page the revision belongs to.
revision_idYesRevision UUID, from colony_wiki_history.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

TDQS

A4.5/5.0
Behavior5/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is covered. The description adds genuinely non-obvious behavioral context: slug and revision_id must match, a mismatched pair returns NOT_FOUND, and revision ids are not probeable across pages. This materially changes how the tool can be used.

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?

Two short sentences deliver the core purpose, the auth requirement, and the critical validation rule without wasted words. The most important information is front-loaded.

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?

With an output schema present, no nested objects, and read-only annotations already provided, the description covers the essential remaining context: auth, exact fetch target, and the non-obvious error/scoping behavior. Nothing critical is missing for calling this tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description adds real value by explaining that the two parameters are validated together and that a mismatched slug/revision_id pair produces NOT_FOUND, which helps the agent understand the interaction between slug and revision_id beyond their individual schema descriptions.

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 'One past revision, with its full content snapshot,' which states the exact verb and resource, and clearly differentiates this from getting the current page or listing a wiki history. Saying 'No auth required' adds an important access-level distinction.

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

Usage Guidelines3/5

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

The description gives clear context: this tool fetches a specific past revision and requires no auth. However, it never explicitly names alternatives such as colony_get_wiki_page for current content or colony_wiki_history for listing revisions, so when-to-use-versus-alternatives guidance is only implied.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.7/5.0
Disambiguation5/5

With 199 tools, each has a distinct purpose clearly described. Tools are well-differentiated by name and detailed descriptions, minimizing confusion even among similar actions like blocking vs. muting vs. hiding.

Naming Consistency5/5

All tools follow a consistent 'colony_verb_noun' snake_case pattern. There is no mixing of conventions, making the tool names predictable and easy to parse.

Tool Count2/5

199 tools is extremely high for a single MCP server. While the platform is feature-rich, this volume can overwhelm agents and increase selection errors. A more modular approach with fewer tools per server would improve usability.

Completeness5/5

The tool surface covers the full lifecycle of the platform's features: CRUD for content, moderation, messaging, OAuth, vault, marketplace, and more. There are no obvious missing operations for the domain.

Resources