Skip to main content
Glama

Import a test plan

import_plan

Create a whole app from a markdown test plan, in one call. This is how to add a real runbook — a plan runs to hundreds of checks and add_check one at a time is not the way. Sections come from the '##' headings, checks from the table rows beneath them, and the platform columns from the check table's header. Pass the file's contents as text.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
byYesWho is importing it.
nameYesApp name to create, e.g. 'Errbud'.
markdownYesThe whole markdown document. Each section is a '##' heading with one table under it; the first column of every check row is a reference like AUTH-01; trailing columns are the platforms, and a cell reading N/A marks that platform not applicable.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already indicate the operation is not read-only and not destructive; the description adds meaningful behavioral context by explaining how the markdown is parsed (## headings, table rows, header columns) and that the entire app is created in a single call. It does not mention potential collisions or error handling, but the annotations plus parsing detail cover the main behavioral traits.

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?

Three sentences with zero filler. The purpose is front-loaded, the alternative is named early, and parsing rules are packed compactly. Every sentence earns its place.

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 moderately complex import operation, the description covers purpose, usage condition, parsing semantics, and input format. The schema provides full parameter documentation. The main gap is the lack of any description of the return value, but with no output schema and rich surrounding context, this is a minor omission, not a blocking one.

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%, and the schema already fully documents all three parameters, including the markdown format. The main description adds only a small clarification ('Pass the file's contents as text'), which does not substantially go beyond the schema. Hence the baseline of 3 is appropriate.

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 with a specific verb and resource: 'Create a whole app from a markdown test plan, in one call.' It clearly distinguishes itself from the sibling add_check by contrasting bulk import with one-at-a-time addition. The parsing rules for sections, checks, and platform columns further pin down exactly what the tool does.

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

Usage Guidelines5/5

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

The description explicitly gives the when-to-use condition: 'This is how to add a real runbook — a plan runs to hundreds of checks and add_check one at a time is not the way.' It names the alternative (add_check) and explains why that alternative is inappropriate for large plans, leaving no ambiguity about which tool to pick.

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.