Skip to main content
Glama
beaglesecurity

Beagle Security MCP Server

Official

beagle_list_projects

Retrieve all security testing projects and applications from the Beagle Security platform to monitor assessments and manage security workflows.

Instructions

List all projects and applications

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
includeTeamNoInclude team projects

Implementation Reference

  • The implementation of the `listProjects` handler.
    private async listProjects(args: any) {
      const endpoint = args.includeTeam 
        ? "/projects?include_team=true" 
        : "/projects";
      
      const result = await this.makeRequest(endpoint);
    
      return {
        content: [
          {
            type: "text",
            text: `Projects:\n${JSON.stringify(result, null, 2)}`,
          },
        ],
      };
    }
  • src/index.ts:82-88 (registration)
    Tool registration for beagle_list_projects.
    name: "beagle_list_projects",
    description: "List all projects and applications",
    inputSchema: {
      type: "object",
      properties: {
        includeTeam: { type: "boolean", description: "Include team projects" },
      },

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