Provides an interface for performing security testing on web applications using Burpsuite Professional, enabling vulnerability scanning, proxy traffic analysis, and site structure mapping.
Burpsuite MCP Server
A Model Context Protocol (MCP) server that provides an interface for interacting with Burpsuite Professional's scanning and proxy functionality.
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:
- 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)
- Parameters:
- get_scan_status: Check the status of a running scan
- Parameters:
scan_id
: ID of the scan to check
- Parameters:
- get_scan_issues: Get vulnerability issues found in a scan
- Parameters:
scan_id
: ID of the scanseverity
: Filter issues by severity (high, medium, low, info, or all)
- Parameters:
- 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)
- Parameters:
- 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)
- Parameters:
Resources
The server provides the following resources:
- Scan Results:
burpsuite://scan/{scanId}
- Issue Details:
burpsuite://scan/{scanId}/issue/{issueId}
- Proxy History:
burpsuite://proxy/history
- Proxy History Item:
burpsuite://proxy/history/{itemId}
- Site Map:
burpsuite://sitemap
Installation
Installing via Smithery
To install Burpsuite Server for Claude Desktop automatically via Smithery:
Manual Installation
- Build the server:
- Add the server to your MCP settings configuration file:
Future Enhancements
This server currently provides mock functionality. To connect it to a real Burpsuite Professional instance:
- Configure Burpsuite Professional to expose its REST API
- Update the server implementation to connect to the Burpsuite REST API
- 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
Viewing Proxy History
Analyzing Vulnerabilities
You must be authenticated.
local-only server
The server can only run on the client's local machine because it depends on local resources.
Burpsuite MCP Server
Related MCP Servers
- -securityAlicense-qualityBurpSuite MCP Server: A powerful Model Context Protocol (MCP) server implementation for BurpSuite, providing programmatic access to Burp's core functionalities.Last updated -22PythonMIT License
- Python
- TypeScriptMIT License
- PythonMIT License