Skip to main content
Glama

Bucket File Write Many

bucket_file_write_many
Destructive

Write multiple TEXT website files (HTML/CSS/JS/JSON/SVG/Markdown/etc.) in one bucket edit. For Wbuilder, read AGENTS.md first, edit data/, leave _config/ read-only, and pass expected_bucket_revision_id from bucket_get. Save-time checks validate recognized Wbuilder files before any entry is written; Preview performs full compilation. Binary assets and whole local folders use the CLI or REST direct-upload API. When delete_missing is true, omitted editable files are soft-deleted, but managed/generated files are preserved. The response's bucket carries dashboard_url (and public_url when published); show that link to the user instead of the raw bucket id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
filesYesArray of text files to write to the bucket.
bucket_idYesReal Revdoku bucket id returned by bucket_create or bucket_list, for example bkt_...; never use a placeholder id.
delete_missingNoWhen true, delete existing bucket files that are not present in this write set.
revision_commentNoOptional comment recorded with the file revision or path operation.
expected_bucket_revision_idNoOptional optimistic-concurrency token from bucket.current_bucket_revision_id. A stale value returns BUCKET_REVISION_CONFLICT without saving any file.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
bucketYes
skippedYes
writtenYes
guidanceNo

TDQS

A4.9/5.0
Behavior5/5

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

Annotations already mark destructiveHint=true, but the description adds meaningful behavioral context: save-time checks validate recognized Wbuilder files before any entry is written, Preview performs full compilation, and delete_missing causes soft-deletion while preserving managed/generated files. It also discloses the response's dashboard_url/public_url behavior, which is beyond annotation coverage. 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?

The description is dense but purposeful, with every sentence adding actionable information. It front-loads the core purpose, then covers Wbuilder constraints, validation behavior, binary routing, delete semantics, and response link handling. No filler or redundant restatement of the tool name.

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 high-complexity tool with 5 parameters and destructive behavior, the description covers all critical operational context: prerequisites (AGENTS.md), editable paths, concurrency token source, validation behavior, exclusion of binary files, delete_missing semantics, and what to show the user (dashboard_url). The output schema exists, so return-value details are already covered structurally, and nothing essential is missing.

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 goes further by clarifying parameter usage: expected_bucket_revision_id should come from bucket_get, files must be text with binary assets excluded, and delete_missing semantics are explained. It also adds practical detail about content types and revision comments without repeating schema content verbatim.

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?

Description starts with a specific verb and resource: "Write multiple TEXT website files ... in one bucket edit." It immediately distinguishes itself from single-file write tools by emphasizing "multiple" and explicitly excludes binary assets, routing them elsewhere. The wording makes it clear this is the batch text-file writer for buckets.

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?

Provides explicit when-to-use guidance: for Wbuilder, read AGENTS.md first, edit data/**, leave _config/** read-only, and pass expected_bucket_revision_id from bucket_get. It also names alternatives for binary assets and whole folders (CLI or REST direct-upload API) and explains delete_missing behavior. An agent receives clear direction on when this tool is appropriate versus other tools.

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

Most tools have clearly distinct purposes, but a few overlaps exist: bucket_file_move and bucket_file_rename both handle same-bucket renames/moves, and bucket_file_reorganize overlaps with copy/move operations. The detailed descriptions help clarify, but the boundaries aren't always obvious.

Naming Consistency4/5

The naming follows predictable patterns: bucket_<verb> for bucket-level actions, bucket_file_<verb> for file operations, bucket_publication_<verb> for publications, and website_preview_* for previews. Minor deviations like bucket_create_from_template, bucket_set_public_slug, and bucket_update_publication_access deviate slightly but remain readable.

Tool Count2/5

At 42 tools, the server is overweight for its scope. While the platform is feature-rich, many tools are narrowly specialized (e.g., bucket_publication_leads, bucket_lock_visibility_changes) and some are redundant (file_move vs file_rename vs file_reorganize), making the surface larger than necessary for an MCP server.

Completeness3/5

The tool set covers the full bucket lifecycle and most file operations, but there is no direct file delete tool (only via delete_missing in write_many or cross-bucket move soft-delete) and binary uploads are explicitly delegated to the CLI/REST. These are notable gaps for a complete file management workflow.