beagle_get_test_result
Retrieve detailed security test results in JSON format for vulnerability analysis and assessment reporting.
Instructions
Get detailed test results in JSON format
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| applicationToken | Yes | Application token | |
| resultToken | Yes | Result token from test start |
Implementation Reference
- src/index.ts:586-599 (handler)The handler function 'getTestResult' that executes the 'beagle_get_test_result' tool logic.
private async getTestResult(args: any) { const result = await this.makeRequest( `/test/result?application_token=${args.applicationToken}&result_token=${args.resultToken}` ); return { content: [ { type: "text", text: `Test results:\n${JSON.stringify(result, null, 2)}`, }, ], }; } - src/index.ts:239-250 (schema)The definition and input schema registration for the 'beagle_get_test_result' tool.
{ name: "beagle_get_test_result", description: "Get detailed test results in JSON format", inputSchema: { type: "object", properties: { applicationToken: { type: "string", description: "Application token" }, resultToken: { type: "string", description: "Result token from test start" }, }, required: ["applicationToken", "resultToken"], }, }, - src/index.ts:318-319 (registration)The request handler registration mapping 'beagle_get_test_result' to its corresponding implementation method.
case "beagle_get_test_result": return await this.getTestResult(args);