beagle_get_application
Retrieve security testing application details using an application token to access project information and assessment data.
Instructions
Get application details by token
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| applicationToken | Yes | Application token |
Implementation Reference
- src/index.ts:439-450 (handler)The implementation of the getApplication handler, which fetches application details by token via a network request.
private async getApplication(args: any) { const result = await this.makeRequest(`/applications?application_token=${args.applicationToken}`); return { content: [ { type: "text", text: `Application details:\n${JSON.stringify(result, null, 2)}`, }, ], }; } - src/index.ts:132-141 (schema)The definition of the beagle_get_application tool in the MCP tools list, including its schema and name.
name: "beagle_get_application", description: "Get application details by token", inputSchema: { type: "object", properties: { applicationToken: { type: "string", description: "Application token" }, }, required: ["applicationToken"], }, }, - src/index.ts:296-297 (registration)The request handler routing where beagle_get_application is mapped to the getApplication method.
case "beagle_get_application": return await this.getApplication(args);