execute_jmeter_test
Run JMeter performance tests using a specified test file (.jmx) with optional GUI mode enabled. Simplifies test execution via AI assistants and MCP-compatible clients.
Instructions
Execute a JMeter test.
Args: test_file: Path to the JMeter test file (.jmx) gui_mode: Whether to run in GUI mode (default: False)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gui_mode | No | ||
test_file | Yes |
Input Schema (JSON Schema)
{
"properties": {
"gui_mode": {
"default": false,
"title": "Gui Mode",
"type": "boolean"
},
"test_file": {
"title": "Test File",
"type": "string"
}
},
"required": [
"test_file"
],
"title": "execute_jmeter_testArguments",
"type": "object"
}