Skip to main content
Glama
rasdaman

Rasdaman MCP Server

Official
by rasdaman

list_coverages

List all available datacubes (coverages) in rasdaman to discover what multidimensional data is accessible.

Instructions

Lists all available datacubes (coverages) in rasdaman.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.4.5
  2. Removedv0.4.0
  3. Changed4 schema fields changedv0.3.0
    • addedInput schema / additionalProperties
      Added value: +false
    • removedOutput schema / description
      Removed value: -"Generic wrapper for non-object return types."
    • removedOutput schema / properties / result / items
      Removed value: -{
      -  "type": "string"
      -}
    • changedOutput schema / properties / result / type
      Previous value: -"array"New value: +"string"
  4. Addedv0.2.1
  5. Removedv0.2.0
  6. First observedv0.1.0

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral burden and clearly conveys a non-mutating enumeration of all available coverages. It does not detail permission/availability semantics or scalability concerns, but these are minor for a zero-parameter list operation.

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, front-loaded sentence with a clear verb and object. Every word earns its place, and there is no redundant or vague filler.

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?

For a simple zero-parameter listing tool, the description is largely complete, and an output schema exists to document return values. It does not explicitly connect the list results to describe_coverage or querying, but that relationship is inferable from the sibling names.

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?

There are zero parameters and schema description coverage is 100%, so the empty input schema fully defines the call. The description adds no parameter information, but none is required; per rubric, 0 params earns a baseline of 4.

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 states a specific verb ('Lists') on a clear resource ('all available datacubes/coverages in rasdaman'). It is distinguishable from siblings like describe_coverage, which targets a single coverage, and from query/documentation tools.

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

Usage Guidelines3/5

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

The description implies the tool is used to discover available coverages, but it gives no explicit guidance on when to call it relative to describe_coverage, execute_wcps_query, or the documentation tools. It does not state exclusions or prerequisites.

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