Skip to main content
Glama

bulk_create_rows

Append many rows to a workspace's table surface in ONE call — the bulk version of create_row. Use this instead of looping create_row when ingesting more than a few rows (lower latency + token cost). Pass rows as an array of { data: {...} } objects, each data a column-name → value map (same shape create_row takes). Up to 500 rows per call. ALL-OR-NOTHING: if any row fails the whole batch is rolled back, so on error you can safely resend the entire batch. Targets one surface for the whole batch (surface_slug, or the workspace's primary table surface). auto_create_columns: true appends a text column for every unmapped key across the batch (one schema extension). Returns { created, rows, created_columns }.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
rowsYesRows to create. Each item is an object with a `data` field: `{ "data": { "title": "...", "status": "drafted" } }`. 1-500 items.
slugYesThe workspace slug (bare or org-prefixed).
surface_slugNoOptional target table surface slug (use list_surfaces). Omit to use the workspace's primary table surface. The whole batch lands on this one surface.
auto_create_columnsNoWhen true, append a text column for every key (across all rows) that doesn't map to an existing column, in one schema extension. Default false.

TDQS

A5/5.0
Behavior5/5

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

Since no annotations are provided, the description carries the full burden of disclosing behavior, and it does so thoroughly. It covers atomicity ('ALL-OR-NOTHING', rollback, safe resend), batch limits ('Up to 500 rows per call'), single-surface targeting, the auto_create_columns schema-extension behavior, and the return shape.

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 dense but every sentence earns its place: purpose, when to use, payload shape, limits, atomicity, target surface, column behavior, and return value are all covered without redundancy. It is front-loaded with the core action and differentiator.

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 4-parameter tool with no annotation coverage and no output schema, the description provides everything needed to invoke it correctly: required vs optional parameters, batch constraints, rollback behavior, schema-extension side effect, and returned fields. No critical gap remains for the agent to infer.

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

Parameters5/5

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

Even though the schema already documents all four parameters, the description adds meaning beyond the structured fields: it clarifies the exact rows payload shape as `{ data: {...} }` maps, states the batch limit, explains the all-or-nothing failure semantics, and specifies that auto_create_columns performs 'one schema extension'. This materially helps an agent formulate correct calls.

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 action and resource: 'Append many rows to a workspace's table surface in ONE call.' It also explicitly identifies itself as 'the bulk version of create_row', which distinguishes it from the create_row sibling and makes its purpose unambiguous.

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

Usage Guidelines5/5

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

It gives direct usage guidance: 'Use this instead of looping create_row when ingesting more than a few rows (lower latency + token cost).' This names the alternative and the exact condition for choosing this tool, leaving no ambiguity about when it should be used.

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
Disambiguation4/5

Most tools have clearly distinct purposes, with detailed descriptions that prevent confusion. The main ambiguity arises from send_message vs. the referenced but missing message_teammate tool, and add_column vs. update_surface for schema changes, but these are mostly clarified by the descriptions.

Naming Consistency4/5

The naming convention is predominantly verb_noun with underscores (e.g., create_workspace, list_rows, update_doc). Exceptions like 'search' and 'address_book' (no noun) and the two-word 'react_to_comment' are minor deviations in an otherwise consistent pattern.

Tool Count1/5

With 68 tools, the surface is far too large for an MCP server, exceeding the 50+ threshold for extreme mismatch. This volume creates excessive selection overhead for agents and suggests the tool set could be consolidated or split into focused servers.

Completeness3/5

The server covers broad functionality across workspaces, docs, tables, HTML, comments, files, webhooks, and billing. However, notable gaps exist: the explicitly referenced message_teammate tool is missing (preventing agent-to-agent waking), and there is no create/upload file tool or create API key tool, which creates dead ends in workflows.