Skip to main content
Glama
beaglesecurity

Beagle Security MCP Server

Official

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
NameRequiredDescriptionDefault
applicationTokenYesApplication token

Implementation Reference

  • 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)}`,
          },
        ],
      };
    }
  • 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"],
      },
    },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/beaglesecurity/beagle-security-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server