Skip to main content
Glama

save_dataset

Save a new dataset — structured data of any kind (measurements, comparisons, research results, price lists, etc.)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataYesThe actual data (any JSON structure)
kindYesKind: "measurement", "comparison", "research", "price_list", "benchmark", "survey", etc.
unitNoUnit (if applicable): "ms", "°C", "EUR", etc.
titleYesDataset title
summaryNoAI-readable summary: "avg 120ms, P95 340ms"
metadataNo
projectIdYesProject ID

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A3.7/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure, and it only says 'Save a new dataset'. It does not disclose return value/confirmation, duplicate-title handling, whether an existing dataset is overwritten or rejected, or whether saving triggers side effects like immediate searchability/listing. The word 'new' is the only behavioral nuance, which is insufficient for a mutating tool with zero annotation coverage.

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?

A single sentence opens with the action and object, followed by clarifying examples. There is zero fluff and every word earns its place; the structure front-loads the most decision-relevant information (that this creates a new dataset).

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

Completeness3/5

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

For a 7-param create operation with no annotations and no output schema, the description plus a rich schema (86% coverage) is minimally viable: the agent knows what to pass and roughly what counts as a dataset. However, it is missing invocation expectations that the schema cannot convey—return format, duplicate/overwrite behavior, and whether optional fields like summary or metadata affect indexing or retrieval. Usable, but with clear gaps.

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 description coverage is 86% (6 of 7 params documented, metadata being the exception), so the baseline is 3. The description adds genuine value by restating the allowed kinds in plain language—mirroring the kind parameter's example values—and by emphasizing 'any JSON structure', which reassures agents that data need not be tabular or rigidly shaped. Only the undocumented metadata param is left unaddressed.

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+resource ('Save a new dataset') and explicitly scopes it to 'new', distinguishing it from any update/overwrite operation. The parenthetical examples (measurements, comparisons, research results, price lists) enrich the meaning and align with the kind parameter's allowed values. It is clearly distinguishable from siblings like get_dataset and list_datasets without opening their schemas.

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?

Usage context is implied through the phrase 'structured data of any kind' and the illustrative examples, which signals this is the generic persistence tool for datasets rather than a specialized one. However, there is no explicit when/when-not guidance, no mention of alternatives (e.g., save_snapshots for snapshots, create_entry for entries), and no exclusion criteria for when another tool should be chosen instead.

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

B3/5.0
Disambiguation3/5

Most tools target distinct resources (elements, knowledge, tasks, datasets, snapshots), but a few pairs blur boundaries: create_project/init_project both create projects, and pin_knowledge/set_knowledge_relevance both mark importance for future agents. The descriptions help separate them, but misselection is possible without careful reading.

Naming Consistency3/5

Tool names consistently use snake_case verb_noun and have solid list_/get_/search_ conventions. However creation verbs are inconsistent (add_element vs create_entry vs save_dataset vs init_project), and deletion mixes delete_entry/delete_file with remove_element, making the naming pattern less predictable than it could be.

Tool Count2/5

48 tools is well above the typical well-scoped range, and the set includes many lifecycle variants (create/init/save/add, delete/remove, update/set) that inflate the count. While the server covers a broad domain, the sheer number makes it heavy and harder for an agent to navigate.

Completeness3/5

The core surfaces (projects, elements, knowledge, timeline, tasks, chats, datasets, snapshots, files) have solid create/read/update coverage, with search and session-handoff tools. Notable gaps exist: read_file references a download path for binary files that no tool provides, and there is no get_entry or delete/archive for projects, datasets, snapshots, or chat sessions.

Resources