If you find a security issue in BraveMCP, please report it privately via GitHub Security Advisories rather than opening a public issue. We aim to acknowledge reports within 72 hours.
BraveMCP is a local-first tool: the browser extension, the HTTP bridge, and the storage (SQLite / ChromaDB) all run on your own machine. Nothing is sent to a remote BraveMCP-operated server.
- HTTP bridge (
localhost:3747). A plainlocalhostbind is reachable by any browser tab's JavaScript, not just the extension, and by any other installed browser extension, not just this one. The bridge enforces anOriginallowlist (chrome-extension://…/moz-extension://…, or noOriginheader at all for a same-machine non-browser client) so an ordinary website cannot call/api/capture,/api/note,/api/stage-groups, or any other route. Scheme matching alone would still trust any other installed extension equally, so the bridge additionally pins the specific extension origin seen on first contact (trust-on-first-use) and rejects every other extension origin afterward. See Security in the README andmcp-server/src/security/origin.ts. - Captured browsing data is stored locally (SQLite, and ChromaDB if running) and is only ever read back by the MCP server you configured in your own AI client. It is not uploaded anywhere by this project.
- AI provider keys. If
AI_PROVIDER=anthropic, yourANTHROPIC_API_KEYis read from your local.envand used only to call the Anthropic API directly from your machine — it is never logged or sent anywhere else. The defaultollamaprovider makes no external network call at all. - Untrusted page content. Captured pages are treated as data, not instructions — content from a visited page should never be able to make the MCP server or the AI client take an action on its behalf. If you find a case where it can (a prompt injection or memory-poisoning path), that is a valid, in-scope report.
.env (holding ANTHROPIC_API_KEY if set) is git-ignored and never committed. The
server does not log request bodies or captured page content to any external service.