BraveMCP
Captures browsing history, bookmarks, highlights, and notes from the Brave browser, making them available for search and retrieval.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@BraveMCPfind the article about MCP security I read last week"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
BraveMCP — Your Browser Memory, Accessible by Claude
BraveMCP is a local-first browser extension + MCP server that captures everything you browse — pages, bookmarks, highlights, notes — and makes it searchable by Claude Desktop as a personal "second brain."
Everything stays on your machine. No cloud. No tracking. Just your own memory, given to Claude.
Demo
Claude answers a vague "do you remember…" question by searching your local browser memory — fully offline. A real screen-recorded GIF can replace this mockup; see docs/RECORDING.md.
Related MCP server: acheron-mcp-server
What It Does
Without BraveMCP | With BraveMCP |
"I don't have access to your history" | Claude searches your browsing history directly |
You copy-paste URLs manually | Extension auto-captures pages as you browse |
Forgotten tabs lost forever | Time-decay search resurfaces what you forgot |
Manual research summaries | Claude synthesizes your sessions automatically |
Example
You: "Do you remember that article about MCP security I read last week?"
Claude: (calls
find_forgotten_content) → "Yes — you visited MCP Security Guidelines 4 days ago, 3 times. It covers sandbox credential handling and shell injection prevention. Want a summary?"
How It Works
Brave Browser
↓ (tab visits, bookmarks, highlights)
Extension (Manifest V3)
↓ POST /api/...
HTTP Bridge (Express :3747)
↓
MCP Server ←→ SQLite + ChromaDB
↓ stdio JSON-RPC
Claude DesktopExtension — Manifest V3. Auto-captures tab changes, bookmarks, and context-menu text highlights.
HTTP Bridge — Express server on port
3747, runs inside the MCP server process to receive extension payloads.Storage — SQLite (FTS5 full-text search) + ChromaDB (local vector embeddings). Nothing leaves your machine.
AI Pipeline — Ollama (
llama3.2/nomic-embed-text) for local summarization and embeddings, with Anthropic API as fallback.MCP Server — Exposes 13 tools to Claude Desktop over stdio.
Quick Start
Prerequisites
Node.js v18+
Brave or Chrome browser
(Optional) Ollama for local AI —
ollama pull llama3.2 && ollama pull nomic-embed-text(Optional) Python 3.10+ for ChromaDB vector search —
pip install chromadb
Install
git clone https://github.com/YOUR_USERNAME/BraveMCP.git
cd BraveMCP
npm run setupnpm run setup handles everything: installs dependencies, builds TypeScript, and checks ports.
Connect to Claude Desktop
Add this to %APPDATA%\Claude\claude_desktop_config.json (Windows) or ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):
{
"mcpServers": {
"brave-memory": {
"command": "node",
"args": ["/absolute/path/to/BraveMCP/mcp-server/dist/index.js"]
}
}
}Restart Claude Desktop.
Load the Browser Extension
Open
brave://extensions(orchrome://extensions)Enable Developer mode
Click Load unpacked → select the
/extensionfolder
(Optional) Start ChromaDB for Semantic Search
pip install chromadb
chroma run --path ./storage/chromaChromaDB runs at http://localhost:8000. Without it, BraveMCP falls back to SQLite keyword search — still works great.
Available MCP Tools
Once connected, Claude can call any of these 13 tools:
Tool | What it does |
| Get your currently open browser tabs |
| Get the tab you're looking at right now |
| Retrieve your saved bookmarks |
| Keyword + semantic search across your history |
| Find pages related to a search query |
| Resurface old content using time-decay + visit scoring |
| Save the active page's content to memory |
| Save a freeform note |
| Save a bookmark with a folder |
| Synthesize what you're currently researching |
| Deep-dive summary on a specific topic from your history |
| Auto-clustered browsing sessions by domain/topic |
| Weekly summary of your browsing and research gaps |
| Recommends tabs to close, archive, or keep |
Page Capture Flow
The extension auto-syncs tab visits in the background. For full page content (text body + AI summary), click "Capture Content" in the extension popup. This sends the page body to the MCP server, which stores it in SQLite and generates an AI summary and vector embedding.
Claude can also save a page directly: capture_current_page(url, title, content, summary).
Project Structure
BraveMCP/
├── extension/ # Manifest V3 browser extension
│ ├── background.js # Service worker: tab sync, bookmarks
│ ├── content.js # DOM extraction for page capture
│ ├── manifest.json
│ └── popup/ # Extension UI
├── mcp-server/ # Node.js MCP server
│ ├── src/
│ │ ├── index.ts # MCP tools + Express HTTP bridge
│ │ ├── storage/
│ │ │ ├── database.ts # SQLite schema, FTS5, migrations
│ │ │ └── chroma.ts # ChromaDB client
│ │ └── ai/
│ │ └── pipeline.ts # Embeddings + summarization pipeline
│ └── tsconfig.json
├── scripts/
│ └── setup.js # One-command setup script
├── storage/ # SQLite DB lives here (git-ignored)
└── package.json # Root: runs setup scriptRoadmap
Phase 1 — MCP server scaffold
Phase 2 — SQLite storage layer (FTS5, migrations)
Phase 3 — Browser extension (Manifest V3)
Phase 4 — Vector search + AI pipeline (Ollama / Anthropic fallback)
Phase 5 — Advanced tools (digest, sessions, forgotten content, tab cleanup)
Phase 6 — Polish + public release
Contributing
See CONTRIBUTING.md for guidelines.
License
MIT — built by Yehezkiel Tampubolon
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/glatinone/BraveMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server