For the complete documentation index, see llms.txt. This page is also available as Markdown.

Create Test Suite

Description

Creates a new AttackForge testsuite - a reusable methodology that test cases belong to. This is a write operation: it persists a new testsuite record.

The shape of args is declared inline (see Building args for Write Tools), so no preparatory call is needed. Preconditions: the caller must have permission to create testsuites. On success the new testsuite id is returned.

Add test cases to the new testsuite with create_testcase.

How To Enable

  1. Go to Users

  2. Select the user you would like to provide access to this tool

  3. Click on Access > MCP

  4. Click on Add Tools

  5. Select the tool create_testsuite and click Add

Example Prompts

  • Create a testsuite called "API Security Testing".

  • Set up a new methodology for cloud configuration reviews and tag it "cloud".

  • Create an internal-only testsuite that should not appear on project requests.

Parameters

Parameter
Type
Required
Description

args

object

Yes

The testsuite-creation payload - see the keys below.

args keys:

Key
Type
Required
Description

name

string

Yes

Name of the testsuite.

description

string

Yes

Description of the testsuite.

is_visible_on_project_requests

boolean

Yes

Whether the testsuite is offered in the AttackForge UI when creating a Project Request.

code

string

No

Arbitrary code associated with this testsuite.

sort_order

integer

No

Determines the default sort order within the AttackForge UI.

tags

array

No

String tags attached to this testsuite.

Example Response

Last updated