beagle_list_running_tests
Monitor active security assessments by retrieving a list of currently running penetration tests for users or teams.
Instructions
List all running tests for user or team
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| teamId | No | Team ID (optional, for team tests) |
Implementation Reference
- src/index.ts:618-633 (handler)Handler method for listing running tests.
private async listRunningTests(args: any) { const endpoint = args.teamId ? `/test/runningsessions?teamid=${args.teamId}` : "/test/runningsessions"; const result = await this.makeRequest(endpoint); return { content: [ { type: "text", text: `Running tests:\n${JSON.stringify(result, null, 2)}`, }, ], }; } - src/index.ts:264-272 (registration)Tool registration for beagle_list_running_tests.
name: "beagle_list_running_tests", description: "List all running tests for user or team", inputSchema: { type: "object", properties: { teamId: { type: "string", description: "Team ID (optional, for team tests)" }, }, }, },