get_test_run_thresholds
Retrieve the thresholds report for a specified test run on BlazeMeter MCP Server to analyze performance metrics and ensure compliance with predefined benchmarks.
Instructions
Get the thresholds report for a specified test run (master).
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| masterId | Yes | The ID of the test run (master) to retrieve the thresholds report for. |
Implementation Reference
- The handler function that performs a GET request to the BlazeMeter API to retrieve the thresholds report for the specified test run masterId.const executeFunction = async ({ masterId }) => { const baseUrl = process.env.BASE_URL; // loaded from .env const username = process.env.BZM_USERNAME; // loaded from .env const password = process.env.BZM_PASSWORD; // loaded from .env try { // Construct the URL for the thresholds report const url = new URL(`${baseUrl}/api/v4/masters/${masterId}/reports/thresholds`); // Set up headers for the request const headers = { 'Authorization': 'Basic ' + Buffer.from(`${username}:${password}`).toString('base64'), 'Accept': 'application/json' }; // Perform the fetch request const response = await fetch(url.toString(), { method: 'GET', headers }); // Check if the response was successful if (!response.ok) { let errorData; try { errorData = await response.json(); } catch (jsonErr) { errorData = await response.text(); } throw new Error(`HTTP ${response.status} ${response.statusText}: ${typeof errorData === 'string' ? errorData : JSON.stringify(errorData)}`); } // Parse and return the response data const data = await response.json(); return data; } catch (error) { if (error instanceof Error) { return { error: error.message }; } else { return { error: 'Unknown error occurred while getting thresholds report.' }; } } };
- Defines the tool schema including name, description, and input parameters schema requiring masterId.const apiTool = { function: executeFunction, definition: { type: 'function', function: { name: 'get_test_run_thresholds', description: 'Get the thresholds report for a specified test run (master).', parameters: { type: 'object', properties: { masterId: { type: 'string', description: 'The ID of the test run (master) to retrieve the thresholds report for.' } }, required: ['masterId'] } } } };
- tools/paths.js:1-10 (registration)Registers the path to this tool module as part of the list of all tool paths used for dynamic loading.export const toolPaths = [ 'blazemeter/new-collection/get-workspace-list.js', 'blazemeter/new-collection/get-project-list.js', 'blazemeter/new-collection/get-test-runs-list.js', 'blazemeter/new-collection/get-test-run-summary.js', 'blazemeter/new-collection/get-test-run-aggregate-data.js', 'blazemeter/new-collection/get-test-run-errors-data.js', 'blazemeter/new-collection/get-test-run-thresholds.js', 'blazemeter/new-collection/get-test-run-timeline-kpis.js', ];
- lib/tools.js:7-16 (registration)Dynamically loads and registers all tools by importing the modules listed in toolPaths and extracting the apiTool export.export async function discoverTools() { const toolPromises = toolPaths.map(async (file) => { const module = await import(`../tools/${file}`); return { ...module.apiTool, path: file, }; }); return Promise.all(toolPromises); }