beagle_list_projects
Retrieve all security testing projects and applications from the Beagle Security platform to monitor assessments and manage security workflows.
Instructions
List all projects and applications
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| includeTeam | No | Include team projects |
Implementation Reference
- src/index.ts:365-380 (handler)The implementation of the `listProjects` handler.
private async listProjects(args: any) { const endpoint = args.includeTeam ? "/projects?include_team=true" : "/projects"; const result = await this.makeRequest(endpoint); return { content: [ { type: "text", text: `Projects:\n${JSON.stringify(result, null, 2)}`, }, ], }; } - src/index.ts:82-88 (registration)Tool registration for beagle_list_projects.
name: "beagle_list_projects", description: "List all projects and applications", inputSchema: { type: "object", properties: { includeTeam: { type: "boolean", description: "Include team projects" }, },