Skip to main content
Glama
SGromych

DataForge Semantic MCP Server

by SGromych

df_create_version

Create a project version. Clones content from a specified version or the current global version, and counts against license limits.

Instructions

WRITES TO DATAFORGE. Create a project version. Content is cloned from clone_from_version, or from the current global version when omitted. Counts against the licence version limit.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
is_globalNo
project_idYes
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.
clone_from_versionNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.1

TDQS

A3.7/5.0
Behavior4/5

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

Annotations only say readOnlyHint=false, so the description's 'WRITES TO DATAFORGE' mainly restates that, but it adds meaningful behavioral facts: content is cloned from the stated source and creation consumes the license version limit. There is no contradiction with the annotations.

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 two short sentences and front-loads the mutation warning before the purpose. The only mildly redundant element is 'WRITES TO DATAFORGE,' which adds little beyond the readOnlyHint=false annotation.

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?

It captures the two behavioral essentials (clone source and license count), but with no output schema it does not describe what a successful call returns. It also leaves is_global and the exact semantics of project_id/name to inference, which is a noticeable gap for a create endpoint.

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 only 20%, and the description compensates only for clone_from_version by explaining the clone source and global-version default. Required params like project_id and name, plus is_global, receive no semantic help, leaving them ambiguous beyond the property names.

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 opens by declaring a write operation and then says 'Create a project version,' a specific verb and resource. This clearly positions it against siblings like df_update_version and df_delete_version, so an agent can identify it without opening the schema.

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?

It explains the clone default ('from the current global version when omitted'), which helps decide whether to pass clone_from_version, but it never says when to prefer this tool over df_update_version, df_import_version_from_git, or df_export_version_to_git. Usage context is only implied by the word 'Create.'

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