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: ZAP MCP Proxy

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)


Available Tools

11 tools
burp_clearA

Clear all captured requests, endpoints, tasks, and issues from the bridge store.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.6/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description must disclose behavioral traits. It only says 'Clear', implying destruction, but does not mention permanence, required permissions, or side effects (e.g., whether data is recoverable). Missing critical behavioral context for a mutation tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single, well-structured sentence with no unnecessary words. It efficiently conveys the action and scope.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers what the tool does (clears various resources) but lacks details on return value or side effects. Given the tool's simplicity and no parameters, it is mostly complete, though adding a note about irreversibility would improve it.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has no parameters, so schema coverage is 100%. The description adds no parameter information, but none is needed. Baseline for zero parameters is 4.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool clears all captured requests, endpoints, tasks, and issues from the bridge store. It uses specific verb 'Clear' and lists the resources, distinguishing it from sibling tools that retrieve or import data.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus alternatives. Sibling tools like burp_status or burp_requests provide read capabilities, but the description does not advise on appropriate context or when not to use this destructive action.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

burp_endpointsA

List unique endpoints (METHOD + path) observed from Burp traffic, with query/body parameter names and hit counts. Helps identify attack surface.

ParametersJSON Schema
NameRequiredDescriptionDefault
methodNoFilter to a single HTTP method
url_containsNoFilter to endpoints whose URL contains this substring

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It reveals the output includes method, path, parameters, and counts, but does not disclose data freshness, caching, or session scope. Adequate but not detailed.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences: first defines functionality, second states purpose. No unnecessary words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

No output schema, but description sufficiently describes output fields. Does not mention pagination or limits, but for a list tool, it covers the essential information.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the description adds no new meaning beyond the parameter descriptions in the schema. Baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states it lists unique endpoints (METHOD + path) from Burp traffic with parameter names and hit counts. Distinguishes from sibling tools like burp_requests, which lists individual requests, and burp_issues, which lists vulnerabilities.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Implies use for attack surface identification but lacks explicit when-to-use or when-not-to-use guidance. No alternatives mentioned despite sibling tools like burp_requests.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

burp_import_issueB

Submit a confirmed finding as a Burp-importable issue. The issue will appear in the bridge and can be pulled into Burp via the burpAI Burp plugin.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesFull URL where the finding was discovered
titleYesFinding title (e.g., "SQL Injection in login parameter")
detailYesDetailed description of the finding with impact
methodNoHTTP method (GET, POST, etc.)
severityNoSeverity: Critical, High, Medium, Low, Information
parameterNoAffected parameter name
remediationNoHow to fix the issue
rawRequestB64NoBase64-encoded raw HTTP request for Burp replay
rawResponseB64NoBase64-encoded raw HTTP response

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must cover behavioral traits. It discloses that the issue appears in a bridge and can be pulled via plugin, but lacks details on side effects, idempotency, or required permissions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, no waste. The first sentence covers the primary action, the second adds integration context. Efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With 9 parameters and no output schema, more context is needed about the bridge, plugin workflow, and prerequisites. The description covers the basic flow but lacks depth for a complex import tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so each parameter already has a description. The tool description adds no additional meaning beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific action ('Submit a confirmed finding as a Burp-importable issue') and mentions the plugin integration, clearly distinguishing from listing or sending tools. However, it doesn't explicitly differentiate from burp_send_to_burp.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool vs. alternatives like burp_send_to_burp. No prerequisites or conditions mentioned. The description only implies it's for confirmed findings.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

burp_issuesA

List security findings/issues queued for Burp import. These are confirmed findings that can be imported as Burp Scanner issues.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description carries full burden. It indicates a read-only operation ('List') and adds context that findings are 'confirmed' and 'can be imported.' Could mention absence of side effects or what happens if queue empty, but is adequate for a simple list tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences, front-loaded with purpose, no unnecessary words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

No output schema, but description sufficiently explains what is listed and the context (queued for Burp import, confirmed). Could mention that output is an array, but given low complexity, it is complete enough.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

No parameters in schema (100% coverage), so baseline is 4. Description does not need to add param info; it adds no harmful information.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it lists security findings/issues queued for Burp import, using specific verb ('List') and resource ('security findings/issues queued'). It distinguishes from siblings like 'burp_requests' (raw requests) and 'burp_import_issue' (import action).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage context (queued for import) but does not explicitly state when to use vs. alternatives or when not to use. No direct comparisons to siblings.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

burp_outbound_statusA

List pending outbound actions queued for the Burp plugin to execute. Actions remain here until the Burp plugin polls and drains them.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.4/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided; description discloses the tool lists actions and explains that actions persist until polled and drained by the plugin, implying a non-destructive read operation with no side effects.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, concise, front-loaded with action (List), and every word adds value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema, the description explains the lifecycle of actions adequately, but could optionally mention the format of the returned list for completeness.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

No parameters in schema; description naturally adds no parameter details but is adequate for a parameterless tool.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool lists pending outbound actions for the Burp plugin, using specific verb 'List' and resource 'pending outbound actions'. It distinguishes from sibling tools like burp_status which likely targets overall system status.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for checking the queue of pending actions, but does not explicitly compare to siblings like burp_status or provide when-not-to-use scenarios.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

burp_request_detailA

Fetch full details for one captured request: headers, request body, and response body (when available). Pass the id from burp_requests.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesRequest id from burp_requests output
body_max_charsNoCap for response body excerpt (default 4000)

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It mentions response body availability but omits details like default cap for body_max_chars (4000) or error handling. Adequate but not comprehensive.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, front-loaded with purpose, no redundancy. Perfectly concise for the information conveyed.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Moderate complexity with 2 params and no output schema. Description covers main functionality and id source, but lacks details on return format or error conditions. Generally complete for a simple fetch.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so baseline is 3. The description adds minimal value beyond the schema; it repeats the parameter purpose without elaboration.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool fetches full details (headers, request body, response body) for one captured request, distinguishing it from sibling tools like burp_requests (list) and burp_clear.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly instructs to pass the id from burp_requests, providing clear usage context. Does not include when not to use, but given the tool's specificity, it is adequate.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

burp_requestsA

List recent HTTP requests captured from Burp (most-recent first). Returns id, method, url, and status for each captured request.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number to return (default 50)
methodNoFilter to a single HTTP method (GET, POST, PUT, etc.)
url_containsNoFilter to requests whose URL contains this substring

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden. It discloses the read-only nature (listing), ordering, and return fields. While it does not mention rate limits or side effects, the behavior is clearly a safe read operation, which is adequate for a list tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences long, front-loaded with the primary action, and contains no extraneous information. Every word adds value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (3 parameters, no output schema, no annotations), the description covers purpose, return fields, ordering, and filter hints. It does not detail the output structure, but the listed fields suffice. Minor gap: no mention of pagination beyond the limit parameter.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with descriptions for all three parameters. The description does not add significant meaning beyond the schema; it restates the return fields but does not elaborate on parameter usage or constraints. Baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('List'), the resource ('recent HTTP requests captured from Burp'), and the ordering ('most-recent first'). It also specifies the return fields (id, method, url, status), distinguishing it from sibling tools like burp_request_detail which likely returns full request details.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage as a list tool but does not explicitly state when to use it versus alternatives like burp_request_detail. No when-not-to-use or exclusions are provided, so the guidance is only implied through context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

burp_send_to_burpA

Queue an action for execution in Burp Suite. The next time the Burp plugin polls, it will execute the action. Supports: send_to_repeater (open Repeater tab with a request), add_scan_issue (add scan issue to Burp), console_log (write to Burp output tab).

ParametersJSON Schema
NameRequiredDescriptionDefault
urlNoFinding URL (required for add_scan_issue)
hostNoTarget host (required for send_to_repeater)
portNoTarget port (required for send_to_repeater, e.g. 443)
typeYesAction type: send_to_repeater opens a Repeater tab; add_scan_issue adds a Scanner issue; console_log writes to Burp output
httpsNoUse HTTPS (required for send_to_repeater)
titleNoIssue title (required for add_scan_issue)
detailNoFinding description (required for add_scan_issue)
messageNoMessage text (required for console_log)
severityNoSeverity: Critical, High, Medium, Low, Information
tab_nameNoTab caption in Repeater (optional, for send_to_repeater)
raw_request_b64NoBase64-encoded raw HTTP request (required for send_to_repeater)

TDQS

A3.9/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description discloses the key behavioral trait of being asynchronous ('the next time the Burp plugin polls'), but does not cover failure handling, reversibility, or authorization requirements. Without annotations, this is a moderate disclosure but incomplete for a tool that queues actions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise with two sentences. The first sentence defines the core action, and the second enumerates supported actions with brief clarifications. No redundant information is present.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has 11 parameters, no output schema, and no annotations, the description is partially complete. It covers the purpose and action types well but omits details about return values, error behavior, or the queuing mechanism's side effects, leaving some gaps for an agent.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 100% schema coverage, the baseline is 3. The description adds value by explaining that certain parameters are required for specific action types (e.g., 'raw_request_b64' for send_to_repeater), which goes beyond the schema's individual property descriptions and clarifies conditional usage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly specifies that the tool queues an action for execution in Burp Suite, listing three distinct action types. It distinguishes itself from sibling tools like 'burp_status' (read-only) or 'burp_clear' (removal) by explicitly stating it is for sending actions.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explains when to use the tool (to queue actions in Burp) but does not provide explicit guidance on when not to use it or mention alternative tools for similar purposes. The context implies usage for sending actions, but lacks exclusions or comparisons.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

burp_snapshotA

Return the most recent session snapshot (cookies, localStorage, sessionStorage). Useful for constructing authenticated requests.

ParametersJSON Schema
NameRequiredDescriptionDefault
url_containsNoMost recent snapshot whose URL contains this substring

TDQS

A3.7/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description must fully disclose behavioral traits. It only describes a read operation without mentioning side effects, idempotency, rate limits, or behavior when no snapshot exists (e.g., returns null). This leaves significant ambiguity for an agent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, zero wasted words, front-loaded with the key action and resource. Every sentence adds value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple (1 optional param, no output schema). The description covers purpose and a use case but omits the return format/structure (how cookies and storage are represented) and behavior for missing snapshots. Adequate but not thorough.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the parameter `url_contains` is already documented in the schema. The tool description adds no additional meaning or context beyond what the schema provides, meeting the baseline but not exceeding it.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool returns the most recent session snapshot, specifying the resource (cookies, localStorage, sessionStorage) and action. This distinctly distinguishes it from sibling tools like burp_requests (list HTTP requests) and burp_issues (security issues).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly mentions the tool is 'useful for constructing authenticated requests,' providing clear context. However, it does not specify when not to use it or compare to alternatives like burp_requests for older snapshots.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

burp_statusA

Show Burp bridge connection status and store statistics (requests, tasks, issues captured). Call first to confirm bridge is running.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description carries full burden. It does not disclose whether the tool is read-only or has side effects (e.g., 'store statistics' could imply mutation). No mention of auth, rate limits, or what happens if bridge is down. Brief and lacks behavioral details.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, front-loaded with purpose and usage guidance. No wasted words; every sentence adds value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

No output schema, so description should explain return values. Mentions 'store statistics' but doesn't describe format or contents. For a simple status check, this might be adequate, but lacks detail on what the response contains.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Zero parameters, baseline is 4. Description adds nothing about params, but none exist, so it's sufficient.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states it shows bridge connection status and stored statistics, and explicitly says to call first. Specific verb 'Show' and resource 'bridge connection status, store statistics' differentiate from sibling tools like burp_requests (list requests) or burp_issues (list issues).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly says 'Call first to confirm bridge is running', which is clear guidance on when to use. Does not mention when not to use or alternatives, but the sibling context makes it obvious that this is the health check tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

burp_tasksA

List scan / plan / scope tasks queued from the Burp extension. Use these to decide what to analyze next.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description carries full burden. It indicates a read-only list operation ('list ... tasks queued'), but does not disclose authentication needs, rate limits, or any side effects. Sufficient for a simple list, but lacks depth.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, front-loaded with the core action. No extraneous information. Every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a zero-parameter tool with no output schema, the description is nearly complete. It states purpose and usage. However, it could mention if the list includes status or ordering, but this is minor given the tool's simplicity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Input schema has zero parameters, and schema description coverage is 100%. The description does not need to add param info; baseline is 4. It correctly implies no parameters needed.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'list' and the resource 'tasks', specifying types: scan, plan, scope. It distinguishes from sibling tools like burp_requests, burp_status, etc., by focusing on listing queued tasks.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives explicit usage context: 'Use these to decide what to analyze next.' It implies when to use, but does not explicitly state when not to use or provide alternative tool names.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 11 tool updatesv1.0.0
    • First observedburp_clear
    • First observedburp_endpoints
    • First observedburp_import_issue
    • First observedburp_issues
    • First observedburp_outbound_status
    • First observedburp_request_detail
    • First observedburp_requests
    • First observedburp_send_to_burp
    • First observedburp_snapshot
    • First observedburp_status
    • First observedburp_tasks

TDQS

A4/5.0

Scored across 11 tools

Disambiguation5/5

Each tool targets a distinct aspect of the Burp Suite integration: clearing, status, requests (list/detail), endpoints, tasks, issues (list/import), session snapshot, and outbound actions (send/status). Despite some related operations, the descriptions clearly differentiate them, leaving no ambiguity.

Naming Consistency5/5

All tools follow a consistent 'burp_' prefix with snake_case names. Verbs and nouns are used predictably (e.g., burp_clear, burp_requests, burp_import_issue). There is no mixing of conventions, ensuring easy pattern recognition.

Tool Count5/5

With 11 tools, the set is well-scoped for a Burp Suite bridge. It covers essential operations without being bloated or sparse. Each tool serves a clear purpose, and the count aligns with the expected complexity of security testing workflows.

Completeness4/5

The tool set covers the core workflow: connection status, request capture, endpoint discovery, task and issue management, import, session retrieval, and outbound actions. Minor gaps exist, such as the lack of detailed views for individual tasks or issues, but these do not critically hinder the primary use case.

Maintenance

ActivitySlowing
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

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

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    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.
    -
  • F
    license
    Not graded
    quality
    C
    maintenance
    A lightweight MCP server that wraps OWASP ZAP's REST API as Model Context Protocol tools, enabling AI agents to perform automated security scanning.
    -
  • A
    license
    A
    quality
    B
    maintenance
    MCP server for offensive-security tooling, enabling AI agents to run reconnaissance, CVE intelligence, JavaScript analysis, HTTP probing, and port scanning against authorized targets.
    10
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    An MCP security toolkit that integrates Burp-style HTTP proxying, AI-driven vulnerability hunting, source code auditing, and reporting into AI coding agents, enabling authorized security testing of web applications and source code.
    24
    MIT

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