Skip to main content
Glama
beaglesecurity

Beagle Security MCP Server

Official

beagle_delete_application

Remove an application from the Beagle Security platform to manage security testing projects and assessments.

Instructions

Delete an application

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
applicationTokenYesApplication token

Implementation Reference

  • Handler function for beagle_delete_application which makes a DELETE request to the API.
    private async deleteApplication(args: any) {
      const result = await this.makeRequest(`/applications?application_token=${args.applicationToken}`, {
        method: "DELETE",
      });
    
      return {
        content: [
          {
            type: "text",
            text: `Application deleted:\n${JSON.stringify(result, null, 2)}`,
          },
        ],
      };
    }
  • Definition of the beagle_delete_application tool, including input schema.
    {
      name: "beagle_delete_application",
      description: "Delete an application",
      inputSchema: {
        type: "object",
        properties: {
          applicationToken: { type: "string", description: "Application token" },
        },
        required: ["applicationToken"],
      },
    },
  • src/index.ts:302-303 (registration)
    Registration of beagle_delete_application in the request handler switch statement.
    case "beagle_delete_application":
      return await this.deleteApplication(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