Skip to main content
Glama

Create a category

create_category
Destructive

MUTATES KnowledgeOwl data: creates a new category (a node in the article tree). KnowledgeOwl API: POST /category.json (JSON). Required by the API: type, project_id, url_hash, name, visibility, status. Pass extra documented fields via fields. Returns the created category.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesThe category name (required).
typeNoThe category type (e.g. "blank", "topic", "custom-content").
fieldsNoAdditional documented KnowledgeOwl fields to send in the JSON write body (e.g. current_version, body) — merged OVER the typed fields above.
statusNoPublishing status, e.g. "active".
url_hashNoThe category URL slug.
project_idYesThe knowledge base (project) id this category belongs to (required).
visibilityNoVisibility, e.g. "public" or "private".

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.4/5.0
Behavior5/5

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

With only destructiveHint=true in the annotations, the description carries the behavioral burden and delivers: it warns 'MUTATES KnowledgeOwl data,' discloses the API contract, and importantly flags that the API requires six fields (type, project_id, url_hash, name, visibility, status) even though the schema only marks two as required. It also states the return behavior ('Returns the created category'), which matters given there is no output schema.

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?

Five dense sentences, each earning its place: mutation warning, purpose, endpoint, API-required fields, fields escape hatch, and return value. The mutation flag is front-loaded and there is zero filler.

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 7-parameter tool with no output schema, the description covers purpose, mutation, endpoint, required inputs, the fields mechanism, and the return value. Minor gaps remain: no prerequisites (e.g., how to obtain project_id), no explicit pointer to update_category for edits, and no mention of error behavior when API-required fields are omitted.

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, but the description adds real value by listing which fields the API actually requires — correcting the schema's impression that only project_id and name matter — and by explaining how to funnel extra documented fields through the 'fields' object. This guides parameter selection beyond what the schema alone provides.

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 states a specific verb and resource — 'creates a new category' — and grounds it in the domain as 'a node in the article tree,' which distinguishes it from sibling tools like create_article and create_glossary_term. The explicit API endpoint (POST /category.json) further pins down the operation.

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?

Usage is implied: an agent would naturally select this to create a category. However, the description offers no explicit when-to-use/when-not-to-use guidance and never names alternatives such as update_category for modifying an existing category, leaving sibling routing to inference.

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.8/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose targeting a specific resource (article, category, glossary, etc.) and action (create, get, list, update). There is no ambiguity or overlap between tool names.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern: create_X, get_X, list_X, update_X. The exception 'knowledgeowl_request' is a utility escape hatch, clearly marked, and does not break the overall pattern.

Tool Count4/5

At 24 tools, the set is slightly above the typical 3-15 range but still well-scoped for a knowledge base API covering many resources. Each tool serves a distinct purpose, and no tools are redundant.

Completeness2/5

The tool set lacks delete operations for all resources, and update operations are only available for articles and categories. Missing get tools for glossary terms, snippets, and other resources, though list tools are provided. This leaves significant gaps in lifecycle coverage.