Skip to main content
Glama

Bulk import snippets and folders from JSON

termix_snippets_bulk_import_snippets_folders_json

Bulk import snippets and folders from JSON into Termix. Existing folders are skipped, and existing snippets can be skipped or overwritten.

Instructions

Bulk import snippets and folders from JSON. Imports snippets and folders. Existing folders are skipped; existing snippets (matched by name+folder) can be skipped or overwritten.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
foldersNo
snippetsNo
overwriteNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.3/5.0
Behavior4/5

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

Annotations declare readOnlyHint=false, destructiveHint=false, idempotentHint=false, openWorldHint=true. The description adds meaningful behavioral context: existing folders are skipped, and existing snippets (matched by name+folder) can be skipped or overwritten based on the 'overwrite' parameter. This goes beyond the annotations and clarifies the mutation semantics. It doesn't mention side effects like partial import failures, but the core behavior is disclosed.

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 sentences and front-loads the core action. The second sentence adds the key behavioral nuance about existing items. It is concise and every sentence earns its place, though it could be slightly more structured with explicit parameter references.

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 bulk import tool with no output schema and 0% schema coverage, the description is incomplete. It does not specify the expected JSON format for folders and snippets, whether the import is atomic, what happens on validation errors, or what the response contains. The sibling export tool likely produces the compatible format, but that connection is not made. An agent would struggle to construct valid input without additional documentation.

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 0%, so the description must compensate. It mentions 'overwrite' behavior but does not explain the structure of the 'folders' and 'snippets' arrays, which are untyped (items: {}). The description adds some meaning for 'overwrite' but leaves the most complex parameters (the JSON structures) completely undocumented. This is a significant gap for a bulk import tool.

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 ('Bulk import') and resource ('snippets and folders from JSON'), and it distinguishes itself from the sibling export tool (termix_snippets_export_all_snippets_folders_as_json) by being the import counterpart. It doesn't explicitly name the sibling, but the resource and action are clear enough to differentiate.

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 description implies when to use it: when you have JSON containing snippets and folders to import. It does not explicitly state when not to use it or mention alternatives like the export tool or create_new_snippet. The behavior for existing folders/snippets is described, which gives some usage context, but no explicit routing guidance.

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

Deploy Server

Other Tools