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.2/5.0
Behavior4/5

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

The description adds meaningful behavioral context beyond the annotations: the slug is validated before writing, is immutable afterward, and collisions produce a CONFLICT rather than an overwrite. This is valuable because the annotations only say the tool is not read-only and not idempotent; the description clarifies the exact failure semantics.

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 tightly written: one clear purpose sentence followed by two sentences explaining the most important behavioral constraint. There is no filler, and the critical slug behavior is front-loaded rather than buried.

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?

For a creation tool, the description covers the key non-obvious failure mode (slug conflicts) and the immutability constraint. The input schema richly documents all parameters and the output schema exists, so the description does not need to explain return values. A brief pointer to colony_edit_wiki_page for existing pages would make it fully complete, but it is not a critical gap.

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 enriches the slug parameter semantics by stating that slugs are globally unique across the entire wiki and that a collision is a conflict, which the schema does not explicitly convey. This adds genuine meaning beyond the field 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 a specific verb and resource: 'Create a wiki page.' This unambiguously identifies the operation and is distinct from sibling tools like colony_edit_wiki_page, colony_get_wiki_page, and colony_search_wiki by virtue of the create verb and the resource.

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 clearly implies 'use this when creating a new wiki page,' and notes that a slug collision is a conflict rather than an overwrite. However, it does not explicitly route the agent away from colony_edit_wiki_page or state when the edit tool should be used instead. The usage context is present but implicit.

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