Skip to main content
Glama

Create a multi-chapter bundle

create_bundle

Bind documents you own into a multi-chapter bundle with its own landing page and ordered chapter navigation (requires an lp_ API key). Up to 200 chapters.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
itemsNoOrdered chapters. Each item needs doc_slug; path_slug and nav_title are optional.
titleYesThe bundle title.
markdownNoOptional Markdown introduction for the landing page.
visibilityNoDefaults to unlisted.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesThe bundle landing page URL
slugYes
visibilityYes

Schema Changelog

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

  1. First observed

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already establish this is non-read-only, non-idempotent, and non-destructive. The description adds useful behavioral context beyond annotations: only documents you own can be bound, an lp_ API key is required, the result has a landing page and chapter navigation, and there is a 200-chapter limit. No contradictions with annotations.

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 two tight sentences with no filler. The core action is front-loaded, followed by the key constraint and prerequisite. Every phrase earns its place.

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?

Given the output schema, fully described parameters, and annotations, the description covers the important operational constraints: ownership, API key requirement, and chapter limit. It does not explain error behavior for unowned documents, but that is not essential for an agent to invoke the 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%, giving a baseline of 3. The description adds meaning beyond the schema by clarifying that documents must be owned and limiting bundles to 200 chapters, which directly refines the semantics of the items parameter. This extra context justifies a 4.

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 uses a specific verb and resource: 'Bind documents you own into a multi-chapter bundle.' It clearly distinguishes this from sibling tools, which all operate on individual docs rather than creating a bundle. The scoping to owned documents and multi-chapter bundles removes ambiguity.

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 gives clear context for when to use the tool — creating a bundle from documents you own — and states a prerequisite: requires an lp_ API key. There are no sibling tools for bundle operations, so explicit exclusions are unnecessary, though it does not spell out when not to use it.

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

Each tool targets a distinct resource-action pair: doc CRUD, bundle creation, listing, and account limits. get_doc vs list_docs clearly separates single-fetch from collection listing, and publish/update/delete/are unambiguous.

Naming Consistency5/5

All tools follow a consistent snake_case verb_noun pattern: create_bundle, delete_doc, get_doc, get_limits, list_docs, publish_doc, update_doc. The verbs are clear and the nouns match the resource, though list_docs is a natural pluralization.

Tool Count5/5

With 7 tools, the server is well-scoped for a document publishing platform. Each tool covers a distinct core operation without redundancy or bloat, fitting comfortably in the ideal 3-15 tool range.

Completeness3/5

The document lifecycle is complete (create, read, update, delete, list), but bundles only have a create operation with no get/update/delete. Also, publish_doc returns a claim_token for anonymous publishes, yet no claim tool is exposed, forcing users to an external endpoint.

Resources