Skip to main content
Glama

dataset_status

Check the current status of a Kaggle dataset by providing its reference. See whether dataset creation or processing is complete, pending, or failed.

Instructions

Dataset creation/processing status

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
refYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv3.0.0

TDQS

C2.3/5.0
Behavior2/5

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

With no annotations, the description carries the full behavioral burden, but it only implies a read/poll operation. It does not disclose whether the call is read-only, whether it errors for datasets not yet created, what status values can be returned, or whether a creation/update must be initiated first.

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

Conciseness2/5

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

At four words, nothing is wasted, but this is under-specification rather than functional conciseness. A noun phrase with no verb and no supporting detail fails to earn its place as a usable definition.

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?

The tool is simple (one parameter, no output schema), but with no output schema the description should explain what status information comes back. It provides neither return semantics nor error/edge-case behavior, so the definition is incomplete for correct invocation.

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

Parameters2/5

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

Schema description coverage is 0% and the ref property has an empty description, so the description must compensate. It never says what ref should contain, and the 'creation/processing' framing creates ambiguity between a dataset identifier and a processing/job task identifier.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description names the resource (dataset) and a specific lifecycle aspect (creation/processing status), which modestly distinguishes it from dataset_details or get_dataset_metadata. However, it lacks an explicit verb like 'get' or 'check', and 'Dataset creation/processing status' reads close to a restatement of the tool name dataset_status.

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 on when to call this tool versus its dataset siblings (dataset_details, get_dataset_metadata, upload_dataset) or the parallel kernel_status. An agent cannot tell whether this is the right call for polling an async creation/update workflow.

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