Skip to main content
Glama

Dplooy

Create data collection

create_data_collection

EVERY repeating content section (services, features, testimonials, FAQ, pricing, team …) goes in a collection — NOT optional. Create them (all plans) BEFORE deploying: editable content the site embeds with declarative markup (server-prerendered for SEO, kept live by the hosted runtime). Each section of ANY site (services, features, testimonials, FAQ, pricing, team …) belongs in a collection so the owner can edit content from their dashboard without touching code; hardcoding that content into the HTML is a broken build, even on a simple landing page. CREATE THEM ALL IN ONE CALL: pass collections: [...] (up to 16) — plan the site's whole content model, then one call per site, not one per section. Each entry picks the preset matching its content (it seeds the field schema) and optionally rows to fill it; embed each returned key with the declarative markup. Unassigned collections serve [] — assign with assign_to_project after deploy. Name each "".

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoSingle-collection shape (legacy): the collection name — or use collections[]
rowsNoInitial rows as objects keyed by field id, e.g. [{name: 'Lawn care', price: 49}]. Image cells take { mediaId, path } from upload_media, never a URL string.
fieldsNoCustom field schema — usually omit and let the preset seed it
presetNoSingle-collection shape (legacy): the preset — or use collections[]
collectionsNoPREFERRED: every collection the site needs, in one call (max 16). Results are reported per item — a failed item never blocks the others.

TDQS

A4.4/5.0
Behavior4/5

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

Annotations only say the tool is neither read-only nor destructive, so the description carries the burden of behavioral context. It adds useful creation semantics: collections are server-prerendered, editable from the dashboard, unassigned collections serve [], and the call returns keys to embed. It does not discuss auth requirements or reversibility, but the core behavior is disclosed.

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

Conciseness3/5

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

The description is information-dense and front-loads the core rule, but it is repetitive and visually noisy. The section list '(services, features, testimonials, FAQ, pricing, team …)' appears twice, and the all-caps phrases like 'NOT optional' and 'broken build' add emphasis more than information. It could be roughly half its length without losing value.

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 absence of an output schema and the complexity of batching up to 16 collections, the description covers the essential workflow: planning the content model, batching, presets, naming, returned keys, and post-deploy assignment via assign_to_project. The only minor gap is that the return format for the generated collection keys is not explicitly specified, though 'embed each returned key' gives enough direction.

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%, so the baseline is 3. The description adds meaning beyond the schema by establishing the naming convention '<Business Name> — <Purpose>', the hard cap of 16 collections, and the strong preference for passing collections[] in one call. It also reinforces that presets seed the field schema and that image cells must use { mediaId, path } rather than URL strings.

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 identifies the verb and resource: create data collections for every repeating content section. It distinguishes itself from related sibling tools by emphasizing that collections are mandatory, created before deployment, and batched in one call per site. This leaves no ambiguity about what the tool does.

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?

The description gives explicit when-to-use guidance: create all collections before deploying, on all plans, and in a single call per site rather than one call per section. It also names the post-deploy alternative workflow by stating that unassigned collections must be assigned with assign_to_project after deploying.

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.1/5.0
Disambiguation4/5

Most tools are clearly separated by resource and action, and the descriptions are detailed enough to avoid most misselection. The main ambiguity is between deploy_files and deploy_website (both deploy a site, one multi-file and one single-file), and get_project versus get_project_files versus list_projects require careful reading.

Naming Consistency5/5

Every tool follows a consistent snake_case verb_noun pattern: create_*, get_*, list_*, delete_*, update_*, upload_*, assign_to_project, unassign_from_project, configure_chatbot. There are no camelCase names, vague verbs, or mixed conventions.

Tool Count2/5

At 29 tools, this exceeds the comfortable MCP surface and crosses into the 'too many' range. The breadth is somewhat justified by the number of subdomains (projects, files, forms, data, bookings, chatbot, media), but several getters and listers could be consolidated without losing capability.

Completeness4/5

The tool set covers a full website build lifecycle: account checks, content modeling, media upload, deploy, assignment, chatbot configuration, and post-deploy file edits. Minor gaps remain: booking pages and form settings are intentionally read-only via the MCP, and there is no chatbot deletion or teardown tool.

Resources