bear-mcp
by autonomee·★ 0·Score 34
Bear Notes MCP server enables AI to search, read, create, and browse Bear notes directly through their local SQLite database.
Overview
This MCP server provides seamless integration between Bear Notes and AI assistants, offering direct read access to Bear's SQLite database for instant search and retrieval. It supports creating new notes using Bear's native URL scheme, ensuring data consistency without cloud dependencies. The server includes both local MCP integration and HTTP mode with optional authentication, making it suitable for various setups.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose Bear Notes MCP when you use Bear for note-taking and want AI assistants to access your notes without cloud dependencies.
When NOT to choose this
Don't choose this if you use a different note-taking app, need cross-platform support (Bear is macOS/iOS only), or require advanced note editing capabilities.
Tools this server exposes
5 tools extracted from the READMEsearch_notesFull-text search across titles and body text
read_noteGet full content of a note by title or UUID
create_noteCreate a new note with title, body, and tags
list_by_tagBrowse notes by tag (supports nested tags)
list_tagsList all tags with note counts
Comparable tools
Installation
Installation
- Clone and setup:
git clone https://github.com/autonomee/bear-mcp.git
cd bear-mcp
bun install- Configure Claude Code:
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"]
}
}
}- For HTTP mode:
export BEAR_MCP_API_KEY="your-secret-key"
bun run start:httpFAQ
- Is this secure?
- Yes, the server operates locally without cloud dependency. Note creation uses Bear's native URL scheme, and for HTTP mode, you can add an API key for authentication.
- Does it work with encrypted notes?
- Encrypted notes are excluded from search results as Bear handles decryption internally. The server only has read-only access to the SQLite database.
Compare bear-mcp with
Last updated · Auto-generated from public README + GitHub signals.