burp-mcp-server-manager
Version:
CLI tool to manage Burp MCP proxy server. User provides jar path.
30 lines (20 loc) • 814 B
Markdown
# MCP Server Manager
This npm package provides a CLI tool to start the Burp MCP proxy server. You must provide the path to your `mcp-proxy-all.jar` file.
## Installation
```zsh
npm install -g .
```
## Usage
```zsh
mcp-server --jar /path/to/mcp-proxy-all.jar [--sse-url http://127.0.0.1:9876/] [--java /path/to/java]
```
- `--jar` (required): Path to the MCP proxy jar file.
- `--sse-url` (optional): SSE URL for MCP server (default: http://127.0.0.1:9876/)
- `--java` (optional): Path to Java executable (default: java)
## Example
```zsh
mcp-server --jar /home/kali/Documents/pentest/MCP/mcp-proxy/build/libs/mcp-proxy-all.jar --sse-url http://127.0.0.1:9876/
```
## Notes
- This tool does not download or bundle the MCP jar. You must provide it.
- Requires Java installed and accessible from your shell.