Skip to main content
Glama
beaglesecurity

Beagle Security MCP Server

Official

beagle_modify_project

Update project details including name and description in Beagle Security's security testing platform to maintain accurate project information.

Instructions

Modify an existing project

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
projectKeyYesProject key
nameYesProject name
descriptionYesProject description

Implementation Reference

  • The handler function that performs a PUT request to the Beagle Security API to modify a project.
    private async modifyProject(args: any) {
      const result = await this.makeRequest("/projects", {
        method: "PUT",
        body: JSON.stringify({
          projectKey: args.projectKey,
          name: args.name,
          description: args.description,
        }),
      });
    
      return {
        content: [
          {
            type: "text",
            text: `Project modified successfully:\n${JSON.stringify(result, null, 2)}`,
          },
        ],
      };
    }
  • The tool definition/schema for 'beagle_modify_project'.
      name: "beagle_modify_project",
      description: "Modify an existing project",
      inputSchema: {
        type: "object",
        properties: {
          projectKey: { type: "string", description: "Project key" },
          name: { type: "string", description: "Project name" },
          description: { type: "string", description: "Project description" },
        },
        required: ["projectKey", "name", "description"],
      },
    },
  • src/index.ts:288-289 (registration)
    The registration of the tool handler within the request handler switch statement.
    case "beagle_modify_project":
      return await this.modifyProject(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