https://zeropath.com/mcp. Point your AI tool at that URL, sign in through your browser, and it can talk to your security findings — no install, no API keys to copy around.
Prefer to run the server yourself with API tokens? Use the local MCP server. Both expose the same tools.
Connect
- Claude Code
- Claude (web & desktop)
- Cursor
- Other tools
Then just ask
Once connected, talk to your findings in plain language:- “Show me the critical issues in the payments repo.”
- “Which of last week’s findings are false positives? Archive them.”
- “Open a pull request with the fix for this SQL injection.”
What it can and can’t do
Acts as you
A connection sees exactly what you see — your role, your teams, one organization you pick when you sign in. Connect again to add another organization.
Read-only by default
Approval asks separately before an app may change anything (retriage findings, generate patches, open PRs, start scans). Skip it and the connection can only read.
Findings only
These connections reach the security tools only — never org, team, or billing administration, and never authoring new agent automation. Running automation an admin already set up (triggering a schedule, activating a playbook) still works. Use an API token for the rest of the API.
Fully audited
Every tool call, approval, and revocation lands in your organization’s audit log.
Managing connections
Everything lives under Settings → Integrations:
Revoking is instant: the next request from that app fails and the user has to reconnect.
Troubleshooting
A tool says it needs write access
A tool says it needs write access
The connection was approved read-only. Remove the server, add it again, and tick the option allowing changes when approving.
I need a second organization
I need a second organization
Each connection is tied to one organization. Add the server a second time and pick the other organization when you sign in.
I'm on a self-hosted or dedicated instance
I'm on a self-hosted or dedicated instance
Use your own domain instead — for example
https://your-company.zeropath.com/mcp. Everything else is identical.Technical details (for security reviews)
Technical details (for security reviews)
The server implements the MCP authorization spec: it is an OAuth 2.0 protected resource and ZeroPath is the authorization server.
- Clients are public (no client secret); PKCE with S256 is mandatory.
- Scopes are
mcp:readandmcp:write; access tokens last one hour and refresh tokens are single-use, so replaying a rotated one revokes the whole connection. - Access tokens work only against the MCP tool surface, not the wider REST API.
- Transport is Streamable HTTP in stateless mode:
POST /mcpwith a bearer token returnsapplication/json.GET /mcpreturns 405 — no server-initiated streams. Protocol versions2025-06-18and2025-03-26are supported.