Bear Notes MCP server — search, read, create, and browse Bear notes by tag. Built with Bun + @modelcontextprotocol/sdk
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"bear-notes": {
"args": [
"run",
"/path/to/bear-mcp/src/index.ts"
],
"command": "bun"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP server that gives AI assistants read/write access to your Bear notes. Search, read, create notes, and browse by tag — all through the Model Context Protocol.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity
Dynamic problem-solving through sequential thought chains
Persistent memory using a knowledge graph
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
Local-first AI memory with knowledge graphs and hybrid search. 17+ AI tools via MCP. Free.
MCP Security Weekly
Get CVE alerts and security updates for Bear Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP server that gives AI assistants read/write access to your Bear notes. Search, read, create notes, and browse by tag — all through the Model Context Protocol.
Bear stores everything in a local SQLite database. This server reads it directly (read-only) for instant search and retrieval. Note creation uses Bear's bear:// URL scheme so your data stays consistent.
No API keys needed for basic use. No cloud dependency. Your notes never leave your machine.
| Tool | Description |
|---|---|
search_notes | Full-text search across titles and body text |
read_note | Get full content of a note by title or UUID |
create_note | Create a new note with title, body, and tags |
list_by_tag | Browse notes by tag (supports nested tags) |
list_tags | List all tags with note counts |
git clone https://github.com/autonomee/bear-mcp.git
cd bear-mcp
bun install
Add to your Claude Code MCP settings (~/.claude.json or project settings):
{
"mcpServers": {
"bear-notes": {
"command": "bun",
"args": ["run", "/path/to/bear-mcp/src/index.ts"]
}
}
}
Then in Claude Code:
> Search my Bear notes for "project ideas"
> Read my trading journal note
> List all notes tagged with "paperclip"
> Create a note titled "Meeting Notes" with tag "work"
For remote access or multi-client setups:
# Optional: set an API key
export BEAR_MCP_API_KEY="your-secret-key"
# Start HTTP server (default port 3333)
bun run start:http
# Custom port
BEAR_MCP_PORT=8080 bun run start:http
Clients must send Authorization: Bearer your-secret-key header with every request.
Health check: GET /health
MCP endpoint: POST /mcp
~/Library/Group Containers/9K33E3U3T4.net.shinyfrog.bear/Application Data/database.sqlite (read-only mode)bear://x-callback-url/create URL scheme, which Bear handles nativelyprojects also returns notes tagged projects/tutoria| Env Variable | Default | Description |
|---|---|---|
BEAR_MCP_API_KEY | (none) | API key for HTTP mode auth |
BEAR_MCP_PORT | 3333 | HTTP server port |
MIT