Skip to main content
Glama

Create a knowledge space

claix.spaces.create

Create a knowledge space to group persisted documents (POST /create-space). The only field is name. Returns space_id, name, and created_at. Pass that space_id as the optional space_id when extracting, then query the whole group with claix.space_context.ask. Free call.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesNombre del espacio de conocimiento. Único campo de entrada, máximo 200 caracteres. Ejemplo: "Proveedores 2026".
api_keyNoAPI key secreta de Claix. Ejemplo: claix_sk_abc123.... Opcional si la conexión MCP envía x-api-key en cabecera HTTP (recomendado en Smithery/Cursor).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataNoJSON payload from the Claix API (extracted records, schema list, or Excel export metadata).
errorNoHuman-readable error message when success is false.
successYesTrue when Claix returned a successful response. False when isError is set on the tool result.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Added

TDQS

A4/5.0
Behavior4/5

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

Annotations already convey non-read-only and non-destructive behavior. The description adds meaningful context: the HTTP endpoint (POST /create-space), the exact response fields, that it is a free call, and how the returned space_id should be used downstream. This goes beyond what annotations provide.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three concise sentences cover purpose, endpoint, return values, workflow, and cost. The inaccurate 'only field is name' sentence is a defect, but the description is otherwise tight and well-structured.

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?

The tool is simple, has an output schema, and the description covers the creation workflow and follow-up usage. It misses nothing critical, but the parameter inaccuracy prevents a perfect score.

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

Parameters2/5

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

Schema description coverage is 100%, so the baseline is 3. However, the description states 'The only field is name,' which contradicts the schema that also defines an optional api_key parameter. This is actively misleading and lowers the score despite the schema being complete.

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 clearly states the action: 'Create a knowledge space to group persisted documents', names the resource, gives the endpoint, and lists return values. It also references claix.space_context.ask, which helps distinguish this from sibling tools like claix.spaces.delete.

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

Usage Guidelines4/5

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

The description provides workflow guidance: create a space, pass the returned space_id when extracting, and query the group with claix.space_context.ask. It does not explicitly say when not to use this tool, but the intended usage context is clear.

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.

Resources