Tox Testing MCP Server

run_tox_tests

Run tox tests with different modes and options

Input Schema

NameRequiredDescriptionDefault
directoryNoDirectory containing tests to run (required for directory mode)
groupNoTest group to run in all mode (defaults to clients)
modeYesTest execution mode
testCaseNoSpecific test case to run (required for case mode)
testFileNoSpecific test file to run (required for file and case modes)

Input Schema (JSON Schema)

{ "properties": { "directory": { "description": "Directory containing tests to run (required for directory mode)", "type": "string" }, "group": { "description": "Test group to run in all mode (defaults to clients)", "enum": [ "clients", "api", "auth", "uploads", "routes" ], "type": "string" }, "mode": { "description": "Test execution mode", "enum": [ "all", "file", "case", "directory" ], "type": "string" }, "testCase": { "description": "Specific test case to run (required for case mode)", "type": "string" }, "testFile": { "description": "Specific test file to run (required for file and case modes)", "type": "string" } }, "required": [ "mode" ], "type": "object" }

You must be authenticated.

Other Tools