Skip to main content
Glama
beaglesecurity

Beagle Security MCP Server

Official

beagle_create_project

Create a new security testing project in Beagle Security to initiate automated penetration tests and vulnerability assessments.

Instructions

Create a new project in Beagle Security

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesProject name
descriptionNoProject description
teamIdNoTeam ID (optional)

Implementation Reference

  • The createProject method handles the logic for the beagle_create_project tool.
    private async createProject(args: any) {
      const endpoint = args.teamId 
        ? `/projects?teamId=${args.teamId}`
        : "/projects";
      
      const result = await this.makeRequest(endpoint, {
        method: "POST",
        body: JSON.stringify({
          name: args.name,
          description: args.description,
        }),
      });
    
      return {
        content: [
          {
            type: "text",
            text: `Project created successfully:\n${JSON.stringify(result, null, 2)}`,
          },
        ],
      };
    }
  • The tool definition and input schema for beagle_create_project.
    {
      name: "beagle_create_project",
      description: "Create a new project in Beagle Security",
      inputSchema: {
        type: "object",
        properties: {
          name: { type: "string", description: "Project name" },
          description: { type: "string", description: "Project description" },
          teamId: { type: "string", description: "Team ID (optional)" },
        },
        required: ["name"],
      },
    },
  • src/index.ts:284-285 (registration)
    The tool handler registration in the switch statement for beagle_create_project.
    case "beagle_create_project":
      return await this.createProject(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