Skip to main content
Glama
unstrike
by unstrike

testsuites

Manage AttackForge test suite libraries: list, retrieve, create, update test suites, and add or modify test cases within them.

Instructions

Manage AttackForge testsuite libraries.

Actions: list — GET /testsuites get — GET /testsuites/:id (requires: id) create — POST /testsuite (requires: fields: name, description) update — PUT /testsuite/:id (requires: id, fields) add_testcase — POST /testsuite/:id/testcase (requires: id, fields) add_testcases — POST /testsuite/:id/testcases (requires: id, items=[{...},...]) update_testcase — PUT /testsuite/:id/testcase/:testcase_id (requires: id, testcase_id, fields)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNo
itemsNo
actionYes
fieldsNo
testcase_idNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.2/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It lists HTTP methods but does not disclose mutation effects, permissions/auth needs, reversibility, or pagination. For a tool containing multiple write actions (create, update, add_testcase), this is a significant gap.

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?

Well-structured action list with one line per action and inline parameter requirements. Front-loaded with the resource. Efficient, though the parenthetical 'requires' notes are terse enough to be borderline cryptic.

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?

The description covers the core action/parameter mapping that the bare schema lacks, which is the tool's main need. But with no annotations, no output schema, and 0% schema coverage on a 5-param multi-action tool, it omits auth, permissions, response shapes, and field/item structure.

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 0%, so the schema names params but documents nothing. The description compensates partially by mapping required params per action (id, testcase_id, fields, items), which is genuinely useful. However, it does not explain the shape of 'fields' or 'items' objects, leaving nested structure undefined.

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?

Clear verb+resource: 'Manage AttackForge testsuite libraries'. The action list enumerates exactly what operations are available and distinguishes this tool from siblings like testcases and projects. It is not quite a 5 because 'manage' is a broad umbrella rather than a single precise operation.

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 action list implies when to use each action, but there is no guidance on when to choose this tool over siblings (e.g. testcases vs testsuites) or prerequisites beyond required params. Usage is only implied by the action names.

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