Skip to main content
Glama

List your documents

list_docs
Read-onlyIdempotent

List the documents and bundles owned by the authenticated account (requires an lp_ API key), newest first, with cursor pagination.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax documents to return (1-200, default 50).
cursorNoThe nextCursor value from a previous call.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
docsYes
nextCursorYesPass as the cursor argument for the next page; null when the listing is exhausted

Schema Changelog

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

  1. First observed

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds useful behavioral context: ownership scoping, auth key requirement, newest-first ordering, and cursor-based pagination. No contradiction 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?

Single sentence that packs in resource, scope, auth requirement, ordering, and pagination with no filler. Every phrase earns its place and the core action is front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a read-only listing tool with a rich output schema, robust annotations, and fully documented optional parameters, the description covers all essential operational details an agent needs: auth, scope, ordering, and pagination.

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

Parameters3/5

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

Schema description coverage is 100%, so the schema already explains both parameters. The description adds context about ordering and cursor pagination but does not introduce new parameter-level meaning beyond the schema, so baseline 3 is appropriate.

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?

States a specific verb ('List'), resource ('documents and bundles'), scope ('owned by the authenticated account'), ordering ('newest first'), and pagination ('cursor'). This clearly distinguishes it from siblings like get_doc (single document), delete_doc (mutation), and create_bundle (creation).

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 makes clear this is the listing operation for the authenticated account's documents and bundles, and it notes the required lp_ API key context. It does not explicitly name alternatives or exclusions, but the listing scope is unambiguous and enough to route an agent correctly.

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