MCP ExplorerExplorer

Burpsuite Mcp Server

@Cyreslab-AIon a year ago
1 MIT
FreeCommunity
AI Systems
MCP Server for Burpsuite enabling AI interaction for web security testing.

Overview

What is Burpsuite Mcp Server

Burpsuite MCP Server is a Model Context Protocol (MCP) server that facilitates interaction with Burpsuite Professional’s scanning and proxy functionalities for web security testing and vulnerability scanning.

Use cases

Use cases include automated vulnerability scanning of web applications, monitoring scan progress, analyzing captured traffic for security insights, and mapping site structures for better understanding of application architecture.

How to use

To use Burpsuite MCP Server, you can send requests to its API endpoints to start scans, check scan statuses, retrieve scan results, access captured HTTP/HTTPS traffic, and view site structures discovered during scanning.

Key features

Key features include tools for starting vulnerability scans, checking scan status, retrieving scan issues by severity, accessing proxy history, and obtaining site maps with discovered URLs.

Where to use

Burpsuite MCP Server is primarily used in web security testing environments, by security professionals and developers to identify and mitigate vulnerabilities in web applications.

Content

Burpsuite MCP Server

smithery badge
A Model Context Protocol (MCP) server that provides an interface for interacting with Burpsuite Professional’s scanning and proxy functionality.

Burpsuite Server MCP server

Overview

This MCP server allows AI assistants to interact with Burpsuite Professional for web security testing and vulnerability scanning. It provides tools for:

  • Starting vulnerability scans on target URLs
  • Checking scan status and retrieving results
  • Accessing HTTP/HTTPS traffic captured by Burp Proxy
  • Viewing site structure discovered during scanning

Features

Tools

The server exposes the following tools:

  1. start_scan: Start a new vulnerability scan on a target URL

    • Parameters:
      • target: Target URL to scan (e.g., https://example.com)
      • scan_type: Type of scan to perform (passive, active, or full)
  2. get_scan_status: Check the status of a running scan

    • Parameters:
      • scan_id: ID of the scan to check
  3. get_scan_issues: Get vulnerability issues found in a scan

    • Parameters:
      • scan_id: ID of the scan
      • severity: Filter issues by severity (high, medium, low, info, or all)
  4. get_proxy_history: Get HTTP/HTTPS traffic captured by Burp Proxy

    • Parameters:
      • host: Filter by host (optional)
      • method: Filter by HTTP method (optional)
      • status_code: Filter by HTTP status code (optional)
      • limit: Maximum number of items to return (default: 10)
  5. get_site_map: Get the site structure discovered during scanning and browsing

    • Parameters:
      • host: Filter by host (optional)
      • with_parameters: Only show URLs with parameters (optional)
      • limit: Maximum number of items to return (default: 20)

Resources

The server provides the following resources:

  1. Scan Results: burpsuite://scan/{scanId}
  2. Issue Details: burpsuite://scan/{scanId}/issue/{issueId}
  3. Proxy History: burpsuite://proxy/history
  4. Proxy History Item: burpsuite://proxy/history/{itemId}
  5. Site Map: burpsuite://sitemap

Installation

Installing via Smithery

To install Burpsuite Server for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @Cyreslab-AI/burpsuite-mcp-server --client claude

Manual Installation

  1. Build the server:

    cd /path/to/burpsuite-server
    npm install
    npm run build
    
  2. Add the server to your MCP settings configuration file:

    {
      "mcpServers": {
        "burpsuite": {
          "command": "node",
          "args": [
            "/path/to/burpsuite-server/build/index.js"
          ],
          "env": {},
          "disabled": false,
          "autoApprove": []
        }
      }
    }

Future Enhancements

This server currently provides mock functionality. To connect it to a real Burpsuite Professional instance:

  1. Configure Burpsuite Professional to expose its REST API
  2. Update the server implementation to connect to the Burpsuite REST API
  3. Add authentication mechanisms for secure API communication

Example Usage

Here are some examples of how to use the Burpsuite MCP server with an AI assistant:

Starting a Scan

Use the Burpsuite MCP server to scan example.com for vulnerabilities.

Viewing Proxy History

Show me the HTTP traffic captured by Burp Proxy for domain example.com.

Analyzing Vulnerabilities

What high severity vulnerabilities were found in the latest scan?

Tools

No tools

Comments

Recommend MCP Servers

View All MCP Servers