Bear Notes MCP server — search, read, create, and browse Bear notes by tag. Built with Bun + @modelcontextprotocol/sdk
{
"mcpServers": {
"bear-mcp": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Bear Notes MCP server — search, read, create, and browse Bear notes by tag. Built with Bun + @modelcontextprotocol/sdk
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 2 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
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