Skip to main content
Glama
themudhaxk

mudbase-mcp-server

by themudhaxk

List Mudbase storage buckets

mudbase_list_buckets

List storage buckets in a Mudbase project to see configured file containers. Filter by name and paginate results for easy browsing.

Instructions

List the storage buckets configured in a Mudbase project.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoPage number, starting at 1. Defaults to 1.
limitNoBuckets per page, max 100. Defaults to 20.
searchNoFilter buckets whose name matches this text.
projectIdYesThe Mudbase project ID.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

B3.2/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden. It only states the action and gives no information about output shape, pagination behavior, default limits, error cases, or side effects. 'List' implies read-only, but important behavioral details are absent.

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 a single clear sentence with no filler. It front-loads the verb and resource, making the tool's purpose immediately identifiable.

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

Completeness2/5

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

With no output schema and no annotations, the description and schema cover only how to invoke the tool. Missing behavioral context like response format, pagination behavior, and relationship to sibling list tools leaves an agent without enough guidance to confidently interpret results or select the tool.

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 baseline is 3. The description adds no parameter-level meaning, but the schema already documents all four parameters including pagination defaults and the search filter.

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 uses a specific verb ('List') and resource ('storage buckets'), and the phrase 'in a Mudbase project' clarifies scope. It distinguishes this tool from sibling list tools like mudbase_list_collections, mudbase_list_documents, and mudbase_list_files.

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

Usage Guidelines2/5

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

No guidance is given about when to use this tool versus alternatives or about workflow context beyond needing a projectId. The description implies listing buckets, but there are no explicit usage conditions or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.