Find Test Suites
Description
Lists AttackForge testsuites matching the optional filter. A testsuite is a reusable methodology - a named, taggable collection of test cases that can be added to a project's testing plan or proposed on a project request. Use this when you need the actual records - call count_testsuites when only a total is needed. Results are paginated (default 10 per page, max 50).
Use the ids returned here to scope find_testcases / count_testcases via their testsuite_ids parameter. See Test Cases and Methodology.
How To Enable
Go to
UsersSelect the user you would like to provide access to this tool
Click on
Access > MCPClick on
Add ToolsSelect the tool
find_testsuitesand clickAdd
Example Prompts
Show me all my testsuites.
Find the testsuite for web application testing.
Which testsuites can be selected on a project request?
List testsuites tagged OWASP Top 10 with their descriptions.
Show me the testsuites in the order they appear in the UI.
What is the code for the mobile testing methodology?
Parameters
filter
object
No
A MongoDB-style filter. Supported fields are listed below.
fields
array
No
System fields to include on each testsuite (id is always returned). Supported values are listed below.
limit
integer
No
Maximum records to return in this page. Default 10, max 50.
skip
integer
No
Number of records to skip (offset). Default 0.
Supported filter fields:
id
ObjectId('<24 hex>')
created, modified
ISO-8601 datetime
name
string
code
string
is_visible_on_project_requests
boolean - supports $eq, $ne and $exists only
tags
array of string
user_id
ObjectId('<24 hex>')
Supported fields values:
id
string
created, modified
ISO-8601 datetime
name
string
code
string
description
string
is_visible_on_project_requests
boolean
sort_order
integer
tags
array of string
user_id
string
Example Response
Last updated