beagle_get_domain_signature
Retrieve domain verification signatures for security testing applications using an application token to authenticate and validate domains.
Instructions
Get domain verification signature
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| applicationToken | Yes | Application token |
Implementation Reference
- src/index.ts:501-512 (handler)The handler implementation for the beagle_get_domain_signature tool.
private async getDomainSignature(args: any) { const result = await this.makeRequest(`/applications/signature?application_token=${args.applicationToken}`); return { content: [ { type: "text", text: `Domain verification signature:\n${JSON.stringify(result, null, 2)}`, }, ], }; } - src/index.ts:180-189 (schema)Registration and input schema definition for the beagle_get_domain_signature tool.
name: "beagle_get_domain_signature", description: "Get domain verification signature", inputSchema: { type: "object", properties: { applicationToken: { type: "string", description: "Application token" }, }, required: ["applicationToken"], }, },