Skip to main content
Glama
beaglesecurity

Beagle Security MCP Server

Official

beagle_delete_project

Remove a security testing project from the Beagle Security platform by specifying its project key.

Instructions

Delete a project

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
projectKeyYesProject key to delete

Implementation Reference

  • Handler function for `beagle_delete_project` tool that performs a DELETE request to the Beagle Security API.
    private async deleteProject(args: any) {
      const result = await this.makeRequest(`/projects?project_key=${args.projectKey}`, {
        method: "DELETE",
      });
    
      return {
        content: [
          {
            type: "text",
            text: `Project deleted:\n${JSON.stringify(result, null, 2)}`,
          },
        ],
      };
    }
  • src/index.ts:104-114 (registration)
    Tool registration in the ListToolsRequestSchema handler.
    {
      name: "beagle_delete_project",
      description: "Delete a project",
      inputSchema: {
        type: "object",
        properties: {
          projectKey: { type: "string", description: "Project key to delete" },
        },
        required: ["projectKey"],
      },
    },
  • src/index.ts:290-291 (registration)
    Tool call routing for `beagle_delete_project` in the CallToolRequestSchema handler.
    case "beagle_delete_project":
      return await this.deleteProject(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