Skip to main content
Glama
SGromych

DataForge Semantic MCP Server

by SGromych

df_bulk_write_dimensions

Create or update multiple dimensions in DataForge in a single API call, reducing round trips when managing dimension metadata.

Instructions

WRITES TO DATAFORGE. Create and/or update many dimensions in one call.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dimensionsYes
project_idYesDataForge project id
version_idYesProject version id
idempotency_keyNoOptional UUID v4. Reusing a key within 24 hours replays the original response instead of applying the change twice. One is generated automatically when omitted.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.1

TDQS

B3/5.0
Behavior2/5

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

With annotations that only set readOnly/idempotent/destructive to false, the description carries the burden of explaining side effects. It states create/update but does not disclose update semantics, partial-failure behavior, permissions, or what happens to existing fields when updating. For a write operation, too little is revealed beyond the action itself.

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

Conciseness3/5

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

The text is short and not padded, but the opening sentence 'WRITES TO DATAFORGE' is redundant filler that does not earn its place. The useful content is compact but under-structured: there is no front-loaded rationale, no alternatives, and no behavioral context.

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?

For a complex bulk write with a large dimensions array, no output schema, and sparse annotations, a two-sentence description is inadequate. Missing guidance on how updates are keyed, how errors or partial writes behave, and when to choose this tool over related siblings leaves an agent to infer too much.

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 about 75% and the input schema already documents project_id, version_id, idempotency_key, and the connected_source object in some detail. The description adds nothing about parameter meaning, so it is at baseline: not harmful, but no added value over the schema.

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 second sentence states a concrete operation—'Create and/or update many dimensions in one call'—with a clear resource and batch scope, distinguishing it from the singular df_write_dimension. However, the first sentence 'WRITES TO DATAFORGE' is generic and does not add operational clarity, so it falls just short of a top-tier purpose statement.

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 'many dimensions in one call' implies the batch-use case, so an agent can infer this is for bulk create/update rather than single writes. But the description never explicitly says when to prefer it over df_write_dimension or how it differs from other bulk write tools like df_bulk_write_measures, and it gives no exclusions or naming of alternatives.

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