Skip to main content
Glama

Mostly Right

Create a dataset

create_dataset
Idempotent

Creates an empty dataset in your workspace and returns its ids. A dataset is the container a recipe binds to; it exists before it has a description, a recipe or a single row, which is the point — the page opens on it and fills in. Example: {"name": "Denver hourly weather", "description": "Hourly METAR observations for KDEN."}. Returns {dataset_id, cloud_dataset_id, name, description, dashboard_url}. dataset_id is the id every other build tool takes; cloud_dataset_id is only for the dashboard URL. Costs nothing to run and builds nothing. Next: write a recipe and call register_recipe with this dataset_id in its dataset block.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
descriptionNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.4/5.0
Behavior4/5

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

Beyond the annotations, the description adds that the call is safe and non-destructive ('Costs nothing to run and builds nothing'), that the created object is empty, and that dataset_id is the value consumed by downstream build tools. This adds meaningful behavioral context without contradicting the readOnlyHint, idempotentHint, or destructiveHint values.

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

Conciseness4/5

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

The description is front-loaded with the core action and return value, then adds domain context, an example, and a clear next step. Some lifecycle prose is slightly discursive, but each sentence contributes to an agent's understanding of when and how to use the tool.

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 low-complexity create tool with two simple parameters and no output schema, the description covers inputs, return shape, identifier roles, side-effect/cost profile, and the next step in the build flow. An agent has enough information to call it successfully and interpret the returned ids.

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?

With 0% schema description coverage, the example payload is valuable and shows realistic values for both name and description. It also explains the role of the returned identifiers (dataset_id vs cloud_dataset_id), though it does not explicitly discuss optionality, uniqueness, or formatting rules beyond what the schema already encodes.

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 opening sentence names the exact verb ('Creates'), the object ('an empty dataset'), the scope ('in your workspace'), and the result ('returns its ids'), making the tool's function immediately identifiable. It also clarifies what a dataset is in this domain ('container a recipe binds to'), distinguishing creation from recipe/run tools such as register_recipe or start_run.

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

Usage Guidelines4/5

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

The description provides clear workflow context: the dataset is an empty container that exists before a recipe or rows, and it ends with an explicit next step ('write a recipe and call register_recipe with this dataset_id'). It does not, however, name alternatives such as update_dataset or list_my_datasets, nor give conditions for when not to use the tool.

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.

Resources