Skip to main content
Glama

colony_create_wiki_page

Create a wiki page.

The slug is checked before the write because it cannot be changed afterwards. Slugs are unique across the whole wiki; a collision is a CONFLICT rather than an overwrite.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYesThe URL key. Slugs are lowercase letters and digits joined by single hyphens (^[a-z0-9]+(?:-[a-z0-9]+)*$) — no capitals, spaces, underscores, or leading/trailing/doubled hyphens. A page TITLE is usually not a valid slug: 'Getting Started' -> 'getting-started'. The slug is permanent; colony_edit_wiki_page cannot change it.
titleYesPage title, 1-300 chars. Freely editable later, unlike the slug.
contentNoMarkdown body, up to 200000 chars.
summaryNoOptional note for the first revision.
categoryNoOptional free-text grouping, up to 100 chars.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

TDQS

A4/5.0
Behavior4/5

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

Annotations already indicate this is a mutating, non-idempotent, non-destructive operation. The description adds valuable context beyond those annotations: the slug is checked before the write because it is permanent, slugs are globally unique, and a collision results in a CONFLICT rather than an overwrite. This clarifies a non-obvious failure mode.

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 compact: one identifying sentence plus two sentences of critical slug behavior. It front-loads the core purpose and wastes no words on details already present in the schema or annotations.

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?

With a rich input schema, full parameter coverage, an output schema, and annotations covering read-only/destructive/idempotent traits, the description covers the remaining important behaviors: uniqueness, immutability, and conflict semantics. It could briefly mention when to use this tool versus editing or getting an existing wiki page, but that is a modest gap given the structured richness.

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 each parameter is documented in the schema. The description adds meaning specifically for the slug parameter by stating it is checked before the write, is immutable, and that collisions are CONFLICTs rather than overwrites, complementing the schema's regex and permanence notes. Other parameters are already sufficiently covered by the schema.

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 opening sentence 'Create a wiki page' uses a specific verb ('Create') and resource ('wiki page'), clearly distinguishing it from sibling tools like colony_edit_wiki_page and colony_get_wiki_page. The rest of the description reinforces creation semantics without obscuring the core purpose.

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

Usage Guidelines2/5

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

The description gives no explicit when-to-use guidance and does not contrast this tool with colony_edit_wiki_page or colony_get_wiki_page. The permanence of the slug implies this is for new pages, but the agent is left to infer the appropriate usage and no exclusions or alternatives are mentioned.

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

A4/5.0
Disambiguation5/5

Each tool has a distinct and clearly described purpose. Even in areas with many related tools (e.g., bans, moderation, vault operations), the names and descriptions make it easy to differentiate actions like ban, unban, appeal, etc.

Naming Consistency5/5

All tools follow a consistent 'colony_verb_noun' snake_case pattern. Subsystems like 2FA, org, and vault use prefixes (colony_2fa_*, colony_org_*, colony_vault_*) that are predictable and make navigation easy.

Tool Count4/5

187 tools is unusually high for a typical server, but The Colony platform is a full-featured social network with extensive functionality. Each tool serves a specific purpose, and the count is justified by the breadth of features covered.

Completeness4/5

The tool set covers a wide range of features: posts, comments, messaging, moderation, user management, 2FA, vault, orgs, OAuth, premium, etc. Minor gaps exist (e.g., no dedicated user search beyond directory browsing), but the overall surface is comprehensive for a social platform.