Skip to main content
Glama
whoismemas

Burp Suite for AI Agent

by whoismemas

šŸ“ Structure

burpsuite-for-ai-agent/
ā”œā”€ā”€ src/
│   └── index.js          ← MCP server (HTTP bridge + 11 MCP tools)
ā”œā”€ā”€ plugin/
│   └── burpAI.py         ← Jython 2.7 Burp plugin (context menu, auto-forward, outbound polling)
ā”œā”€ā”€ package.json          ← Node.js manifest (dependencies: @modelcontextprotocol/sdk, zod)
ā”œā”€ā”€ .gitignore
└── README.md

Related MCP server: Burp Suite MCP Server

Architecture

Burp Suite (Linux / Windows)
  └─ plugin/burpAI.py (Jython plugin)
       │  POST /ingest (127.0.0.1:9999)
       │  GET /burp/outbound (poll every 2s)
       ā–¼
src/index.js  ← MCP server (HTTP bridge + 11 MCP tools)
       │
       ā–¼
AI Agent ←→ MCP tools

Linux: Burp + server + agent — all on one machine. Windows + WSL: Burp on Windows, server + agent in WSL over localhost.


Quick Install (one command)

bash install.sh

This runs npm install, prints Burp plugin instructions, and generates .mcp.json for AI agent auto-registration.


Quick Start

1. MCP server

node src/index.js

2. Load Burp plugin

  1. Burp Suite → Extensions → Installed → Add

  2. Extension type: Python (requires Jython 2.7 standalone JAR)

  3. File: plugin/burpAI.py

3. Verify

In Burp's burpAI tab, click Check Status. Connected:

{ "ok": true, "requests": 0, "endpoints": 0 }

MCP Tools (16 tools)

Tool

Description

burp_status

Bridge connection status + store statistics

burp_requests

List captured HTTP requests (filter by url/method)

burp_request_detail

Full request/response (headers, body)

burp_endpoints

Unique endpoints with parameter names, hit counts

burp_tasks

Scan/plan/scope tasks queued from Burp context menu

burp_issues

Security findings queued for Burp import

burp_import_issue

Submit a finding (title, url, severity, detail)

burp_snapshot

Latest session snapshot (cookies, storage)

burp_send_to_burp

Queue action: send_to_repeater, add_scan_issue, console_log

burp_replay

Modify captured request → send to Burp Repeater

burp_outbound_status

Pending outbound actions

burp_scan_url

Run nuclei scan against a single URL

burp_scan_bulk

Run nuclei scan against all captured endpoints

burp_scan_results

List/display nuclei scan results

burp_scan_import_all

Import nuclei findings as Burp issues

burp_clear

Clear all captured data


Workflow

Capture → Analyze

Right-click a request in Burp (Proxy/Repeater) → burpAI: send request(s)

Agent:

  • burp_requests — list captured requests

  • burp_endpoints — enumerate endpoints

  • burp_request_detail — full request/response

Queue scan → Execute

Right-click → burpAI: send + queue scan
Agent picks up via burp_tasks.

Finding → Burp Scanner

Agent calls burp_import_issue → Burp tab → Import Issues

Agent → Burp Repeater

Agent calls burp_send_to_burp with type send_to_repeater → Burp opens Repeater tab.


Agent-Driven Scanning

This is the core custom scanner flow: Burp captures → agent thinks → agent modifies → Burp executes.

Burp (Proxy → History)
  │ right-click → burpAI: send request(s)
  ā–¼
MCP server ←── captures request
  │
  ā–¼
Agent reads via burp_requests / burp_request_detail
  │
  │ Agent thinks: "endpoint /api/login takes username, try SQLi"
  │
  ā–¼
Agent calls burp_replay({
  request_id: "burp:burp-12345",
  set_body: '{"username":"admin\\' OR 1=1--","password":"x"}'
})
  │
  ā–¼
MCP server → Burp Repeater → Burp executes HTTP call
  │
  ā–¼ (auto-forward enabled)
Response captured back → Agent reads & analyzes
  │
  ā–¼
burp_import_issue → if vulnerable

Key tool: burp_replay takes a captured request ID, applies modifications (method, path, headers, body), and sends it to Burp Repeater. No need to manually craft raw bytes — the agent just specifies what to change.

Requirements:

  • Enable Auto-send Repeater responses in Burp plugin settings

  • This ensures the agent sees every Repeater response automatically


External Scanning (nuclei)

Optionally run nuclei scans directly from the bridge:

Tool

Use case

burp_scan_url

Scan one URL with nuclei templates

burp_scan_bulk

Scan all captured endpoints at once

burp_scan_results

Review scan history

burp_scan_import_all

Import nuclei findings as Burp issues

Nuclei must be installed on the same machine. Findings with High/Critical severity are auto-imported as Burp issues.


Auto-Forwarding

Feature

Description

Auto-send Proxy responses

All Proxy traffic sent to MCP server

Auto-send Repeater responses

Repeater traffic automatically forwarded

Forward Burp Scanner issues

Scanner findings pushed to agent

Auto import issues

Pull agent findings on context menu


Options

node src/index.js --port 9999                 # Custom port (default: 9999)
node src/index.js --db /path/to/data.json     # Persistence file (default: burpai-data.json)
node src/index.js --port 9001 --db custom.json

Data persists across restarts when --db is set (or by default). The server auto-saves on every mutation and loads data on startup.

Burp plugin URL configurable from the burpAI settings tab in Burp.


Requirements

  • Node.js 18+

  • Burp Suite (Community or Professional)

  • Jython 2.7 standalone JAR (configured in Burp Extensions → Environment)


Install Server
A
license - permissive license
A
quality
B
maintenance

Maintenance

–Maintainers
–Response time
–Release cycle
–Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • F
    license
    A
    quality
    D
    maintenance
    Exposes Burp Suite's REST API to AI assistants, enabling users to trigger vulnerability scans, monitor progress, and manage security tasks through natural language. It also provides programmatic access to Burp's security knowledge base for querying vulnerability definitions and remediation advice.
    Last updated
    8
    1
  • F
    license
    -
    quality
    C
    maintenance
    An MCP server that lets AI assistants analyze Burp Suite XML exports offline, without running Burp. Provides 19 tools for mapping endpoints, finding secrets, detecting vulnerabilities, analyzing headers, exporting curl commands, and generating pentest reports.
    Last updated

View all related MCP servers

Related MCP Connectors

  • MCP server for Pentest-Tools.com: run scans, manage findings and reports via your preffered LLM.

  • MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.

  • Security firewall for AI agents — scans MCP calls for injection, secrets, and risks.

View all MCP Connectors

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/whoismemas/burpsuite-for-ai-agent'

If you have feedback or need assistance with the MCP directory API, please join our Discord server