Skip to main content
Glama

Update custom dataset

update_custom_data

Update a custom-data dataset — send only the fields you want to change (e.g. { raw_data, columns }).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesCustom-data ID (from list_custom_data)
nameNoDataset name
columnsNoReplacement column definitions — send alongside raw_data when the shape changed
raw_dataNoReplacement rows, each an object keyed by column name — replaces every stored row
file_nameNoOriginal file name
file_sizeNoFile size in bytes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataNoThe dataset as saved — id, name, file_name and columns.
successYesTrue when the call succeeded. A failure comes back as an error result instead.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A3.8/5.0
Behavior4/5

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

Annotations provide only readOnlyHint=false and destructiveHint=false, so the description carries the burden for behavioral context. It clearly conveys partial-update (PATCH-like) semantics, which is a meaningful behavioral trait beyond the annotations. It does not go into side effects like full replacement of rows, but that is documented in the schema for raw_data.

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 efficient sentence with no filler. The core action and the partial-update behavior are front-loaded, and the example payload is compact and useful without redundancy.

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 moderate-complexity update tool, the combination of the description, fully documented schema, and output schema covers the essentials: what the tool does, partial-update semantics, and parameter meaning. It could be more complete by naming when to use it versus creating or archiving a dataset, but nothing critical is missing for invoking it correctly.

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's example list '{ raw_data, columns }' adds little beyond the schema's own field descriptions, since both parameters are already fully documented there.

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

Purpose4/5

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

The description states a clear verb and resource: 'Update a custom-data dataset'. It also communicates the key semantic distinction from creation tools by noting 'send only the fields you want to change'. However, it does not explicitly differentiate from sibling tools like create_custom_data or archive_custom_data beyond the verb itself.

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 phrase 'send only the fields you want to change' implies the tool is for partial updates to an existing dataset, which is useful context. But there is no explicit guidance about when to choose this tool over alternatives such as create_custom_data, duplicate_custom_data, or archive_custom_data, nor any stated exclusions.

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