The Burp Suite MCP Server Extension allows you to integrate Burp Suite with AI clients using the Model Context Protocol (MCP). This extension acts as a bridge between Burp Suite's functionality and AI assistants that support the MCP standard, enabling AI tools to interact directly with Burp Suite.
Before installing the extension, ensure you have:
java --version
)jar
command available in your PATH (verify with jar --version
)Clone the repository:
git clone https://github.com/PortSwigger/mcp-server.git
Navigate to the project directory:
cd burp-mcp
Build the JAR file:
./gradlew embedProxyJar
This creates the extension JAR at build/libs/burp-mcp-all.jar
Configure the extension through the MCP tab in Burp Suite:
http://127.0.0.1:9876
)The extension works with Claude Desktop through a proxy server. You can configure this in two ways:
Use the built-in installer from the extension to automatically configure Claude Desktop.
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"burp": {
"command": "<path to Java executable packaged with Burp>",
"args": [
"-jar",
"/path/to/mcp/proxy/jar/mcp-proxy-all.jar",
"--sse-url",
"<your Burp MCP server URL configured in the extension>"
]
}
}
}
If your client supports SSE MCP servers directly, configure it with:
http://127.0.0.1:9876
or
http://127.0.0.1:9876/sse
For clients that only support Stdio MCP servers:
/path/to/packaged/burp/java -jar /path/to/proxy/jar/mcp-proxy-all.jar --sse-url http://127.0.0.1:9876
Once configured, you can interact with Burp Suite through your AI client using the Model Context Protocol.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.