Skip to main content
Glama
beaglesecurity

Beagle Security MCP Server

Official

beagle_get_test_status

Check the current status of a running security test to monitor progress and determine when results are available.

Instructions

Get the status of a running test

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
applicationTokenYesApplication token
resultTokenYesResult token from test start

Implementation Reference

  • Handler function that executes the beagle_get_test_status logic by making an API request.
    private async getTestStatus(args: any) {
      const result = await this.makeRequest(
        `/test/status?application_token=${args.applicationToken}&result_token=${args.resultToken}`
      );
    
      return {
        content: [
          {
            type: "text",
            text: `Test status:\n${JSON.stringify(result, null, 2)}`,
          },
        ],
      };
  • Tool definition and input schema for beagle_get_test_status.
    {
      name: "beagle_get_test_status",
      description: "Get the status of a running test",
      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:314-315 (registration)
    Registration of the tool call within the request handler switch statement.
    case "beagle_get_test_status":
      return await this.getTestStatus(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