loading…
Search for a command to run...
loading…
Exposes the Acunetix Scanner API as a streamable HTTP MCP server, allowing clients to interact with security scanning tools via standardized requests. It enable
Exposes the Acunetix Scanner API as a streamable HTTP MCP server, allowing clients to interact with security scanning tools via standardized requests. It enables automated vulnerability management and integration with platforms like GhostReconRev through a containerized bridge.
This project exposes the Acunetix Scanner API as a streamable HTTP MCP server.
flowchart LR
client[GhostReconRev or another MCP client] -->|HTTP MCP requests<br/>optional Bearer auth| http[Streamable HTTP transport]
http --> core[MCP server]
core --> spec[Spec loader + schema validation]
core --> acclient[Acunetix client]
acclient --> acunetix[Acunetix Scanner API]
flowchart LR
subgraph dockerhost["Docker host"]
subgraph dreamland["Shared bridge network: dreamland"]
ghost[ghostreconrev-app]
mcp[acunetix-mcp-server]
end
end
ghost -->|/healthz and /mcp<br/>optional Bearer auth| mcp
mcp -->|https://<Acunetix host>:3443/api/v1| acunetix[Acunetix Scanner API]
The full generated inventory is in docs/tool-inventory.md.
Copy .env.example into .env.
The following settings are required.
ACUNETIX_BASE_URL: Full Acunetix API base URL, for example https://host.docker.internal:3443/api/v1
when the scanner runs on the Docker host.ACUNETIX_API_KEY: Acunetix API key sent as the X-Auth header.Use Docker Compose.
cp .env.example .env
docker compose build --no-cache
docker compose up
When both stacks run on the shared dreamland bridge, the integration works
as follows.
http://acunetix-mcp-server:3000/mcp.http://acunetix-mcp-server:3000/healthz.ACUNETIX_BASE_URL.GhostReconRev resolves required MCP tool names dynamically against the runtime tool inventory.
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"acunetix-mcp-server": {
"command": "npx",
"args": []
}
}
}