Skip to main content
Glama
tspvivek
by tspvivek

baasix_import_schemas

Import schemas from JSON data to define your data models in Baasix. Load schema definitions in one action for your backend.

Instructions

Import schemas from JSON data

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
schemasYesSchema data to import

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.7

TDQS

C2.9/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, but 'Import schemas from JSON data' reveals only the input format. It does not state whether the import overwrites, merges, or validates existing schemas, whether it requires authentication, or what happens on conflict — significant gaps for a potentially destructive operation.

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 one front-loaded sentence with no wasted words: verb, resource, and input format in order. It is slightly under-specified for the complexity of an import operation, where one more sentence on behavior would earn its place, but as written it is efficiently sized.

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 tool with no annotations, no output schema, and a nested-object parameter, the description is too thin. It omits what happens to existing schemas on import, the expected JSON structure, and any link to baasix_export_schemas as the natural source of such payloads, leaving an agent unable to predict side effects or validate input.

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% — the single schemas parameter is documented as 'Schema data to import' — so the baseline is 3. The description adds only a marginal hint that the payload is JSON; for an object parameter with nested structure, it does not elaborate the expected shape (map vs array, required schema fields), but the schema itself carries the parameter-level burden.

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 specific verb and resource ('Import schemas') with an input format ('from JSON data'), so an agent can tell this is a bulk-load operation rather than a per-schema create/update. However, it does not explicitly differentiate itself from siblings like baasix_create_schema or connect itself to its inverse baasix_export_schemas, leaving the distinction to inference from the tool name.

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

Usage Guidelines2/5

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

The description gives no guidance on when to choose this tool over alternatives such as baasix_create_schema, baasix_update_schema, or baasix_export_schemas. There is no statement of when not to use it, no mention of where the JSON payload should come from, and no reference to sibling tools.

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