Skip to main content
Glama
beaglesecurity

Beagle Security MCP Server

Official

beagle_get_test_result

Retrieve detailed security test results in JSON format for vulnerability analysis and assessment reporting.

Instructions

Get detailed test results in JSON format

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
applicationTokenYesApplication token
resultTokenYesResult token from test start

Implementation Reference

  • The handler function 'getTestResult' that executes the 'beagle_get_test_result' tool logic.
    private async getTestResult(args: any) {
      const result = await this.makeRequest(
        `/test/result?application_token=${args.applicationToken}&result_token=${args.resultToken}`
      );
    
      return {
        content: [
          {
            type: "text",
            text: `Test results:\n${JSON.stringify(result, null, 2)}`,
          },
        ],
      };
    }
  • The definition and input schema registration for the 'beagle_get_test_result' tool.
    {
      name: "beagle_get_test_result",
      description: "Get detailed test results in JSON format",
      inputSchema: {
        type: "object",
        properties: {
          applicationToken: { type: "string", description: "Application token" },
          resultToken: { type: "string", description: "Result token from test start" },
        },
        required: ["applicationToken", "resultToken"],
      },
    },
  • src/index.ts:318-319 (registration)
    The request handler registration mapping 'beagle_get_test_result' to its corresponding implementation method.
    case "beagle_get_test_result":
      return await this.getTestResult(args);

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