Skip to main content
Glama

List Rows

list_rows
Read-only

List rows in a v2 app's mutable collection. This is also how a collection's current state is polled, since MCP has no streaming: pass the prior next_cursor as since to fetch only rows that are new or changed. Returns { rows, next_cursor, has_more }.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoPage size.
sinceNoOpaque cursor from a previous call's next_cursor. Also the poll handle: pass it back to fetch only newer/changed rows.
app_idYesThe app id.
collectionYesThe collection name declared in the app's manifest.

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and openWorldHint=false, so the safety profile is covered. The description adds valuable behavioral context beyond these annotations: MCP has no streaming, the tool doubles as a poll mechanism, and the `since` cursor returns only new or changed rows. This meaningfully clarifies the tool's runtime behavior and pagination contract.

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 three sentences long and every sentence earns its place: the core operation, the critical polling behavior, and the return shape. It is front-loaded with the primary purpose and contains no filler or redundant restatements of the title or annotations.

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?

Given the moderate complexity of cursor-based pagination and polling, the description is complete: it states the return fields, explains how to use `since`, and notes the mutable-collection context. With readOnlyHint and a 100%-covered schema, no critical gaps remain 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%, providing baseline parameter descriptions for all four fields. The description goes beyond the schema by giving `since` rich semantic meaning (poll handle, prior next_cursor, 'only rows that are new or changed'), and by clarifying the response structure ({ rows, next_cursor, has_more }). This adds real value over the schema alone.

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: 'List rows in a v2 app's mutable collection', which clearly identifies the operation and scope. It also differentiates itself from sibling tools like get_row (single row) and list_deleted_rows by focusing on the mutable collection and adding a polling use case.

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 explicitly explains when to use the tool for polling ('This is also how a collection's current state is polled') and how to leverage the `since` cursor for incremental fetches. It does not name alternatives or exclusions (e.g., when to use list_deleted_rows instead), but the context is clear enough for most selection scenarios.

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 or action: row operations (get/list/upsert/update/delete/restore) are clearly separated, while apps, attachments, community, grants, ingest, members, publisher, review, and taste each cover a different domain. Even closely related actions like share_link_rotate and domain_set have clearly scoped descriptions, so an agent can reliably select the right tool.

Naming Consistency4/5

Tool names use two patterns: noun-like names for resource areas (apps, attachments, community, grants, ingest, members) and verb_noun names for row operations (upsert_row, delete_row, etc.). This deviation is predictable and readable, but it is not perfectly uniform, so a slight deduction applies.

Tool Count4/5

With 22 tools, the server is on the heavier side, but the breadth of the platform (app lifecycle, data storage, attachments, community, reviews, feedback, identity) justifies the count. Each tool represents a meaningful feature area with multiple internal actions, so none feels redundant.

Completeness5/5

The tool surface covers the full lifecycle for apps (create, read, update, delete), rows (create, read, update, delete, restore, list deleted), attachments, membership, grants, ingest, community, and reviews. Obvious gaps like rollback or version history are not core to the domain, and the presence of get_skill helps agents understand the workflow.

Resources