MCP Bear
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., "@MCP Bearsearch for my notes about project ideas"
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.
MCP Bear
A Python-based Model Context Protocol (MCP) server that provides access to Bear Notes.
Bear stores notes in a SQLite database. This MCP server provides both read and write access to your notes. See: https://bear.app/faq/where-are-bears-notes-located
Features
Read Operations
Read all notes (active and archived) from Bear's SQLite database
Search notes by text content, tag, or unique ID
List all tags
Get notes by specific tag
Get archived notes separately
Note Management
Create new notes with title, content, and tags
Append, prepend, or replace text in existing notes
Archive/unarchive notes for organization
Move notes to trash
Tag Management
Add tags to existing notes
Rename tags across all notes
Open Bear showing notes with specific tag
Bear Integration
Open specific notes in Bear
Search within Bear app
All operations integrate seamlessly with Bear's UI
Write operations use Bear's official x-callback-url API for safe, reliable modifications.
Related MCP server: Bear MCP Server
Requirements
Python 3.10 or higher (tested with 3.14)
Bear note application (macOS)
Access to Bear database
Installation
Development Setup
# Clone the repository
git clone https://github.com/maxim-ist/mcp-bear.git
cd mcp-bear
# Install dependencies (using mise for Python version management)
mise install
mise exec -- python -m venv .venv
.venv/bin/pip install -e .Install via pip (when published)
pip install mcp-bearClaude Desktop Configuration
Add this to your claude_desktop_config.json:
Using Python directly
{
"mcpServers": {
"bear": {
"command": "python",
"args": [
"-m",
"mcp_bear.server"
],
"env": {
"PYTHONPATH": "/Users/YOUR_USERNAME/Work/mcp-bear/src"
}
}
}
}Using installed package
{
"mcpServers": {
"bear": {
"command": "mcp-bear"
}
}
}Available Tools
When the server is started, the following MCP tools become available:
Read Operations (Basic)
get_notes: Retrieves all non-archived notesget_tags: Lists all tagsget_notes_like: Searches for notes containing specific text
Read Operations (Advanced)
get_note_by_id: Get a specific note by its unique identifierget_notes_by_tag: Get all notes with a specific tagget_archived_notes: Get all archived notes
Note Management
create_note: Create a new note with optional title, text, tags, and pin statusadd_text: Add text to an existing note (append, prepend, or replace)trash_note: Move a note to trasharchive_note: Archive a note (removes from main list, keeps searchable)unarchive_note: Unarchive a note
Tag Management
add_tags: Add tags to an existing noteopen_tag: Open Bear and show all notes with a specific tagrename_tag: Rename a tag across all notes
Bear Integration
open_note: Open a specific note in Bearsearch_bear: Open Bear and show search results for a term
All write operations use Bear's official x-callback-url scheme, which requires Bear to be installed and running.
Configuration
You can override the default Bear database path by setting the DB_ROUTE environment variable:
export DB_ROUTE="/path/to/custom/database.sqlite"Development
Running the server directly
cd /Users/borag/Work/mcp-bear
.venv/bin/python -m mcp_bear.serverTesting with MCP Inspector
# Install the MCP inspector
pip install mcp-inspector
# Run the inspector
mcp-inspector python -m mcp_bear.serverArchitecture
mcp_bear/server.py: Main MCP server implementationmcp_bear/database.py: SQLite database access for read operationsmcp_bear/bear_url.py: Bear x-callback-url operations for write operationsUses Python's built-in
sqlite3module (no native dependencies)
Security Note
This server uses parameterized SQL queries to prevent SQL injection attacks, improving upon the original TypeScript implementation.
License
ISC
Author
Bora Gonul me@boragonul.com
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceA Model Context Protocol server that allows AI assistants like Claude to read notes from the Bear note-taking app in a safe, read-only mode.Last updated4615MIT
- AlicenseAqualityDmaintenanceAn MCP server that integrates Bear Note Taking App with Claude Desktop, allowing Claude to read, create, search notes and manage tags directly from Bear.Last updated71MIT
- FlicenseBqualityDmaintenanceA Model Context Protocol server that provides Claude with access to search, retrieve, and analyze notes from the Bear App through natural language queries.Last updated78
- AlicenseAqualityDmaintenanceA Model Context Protocol server that integrates with Bear App, enabling AI assistants to create, search, modify, and organize notes and tags through X-callback-URL scheme.Last updated16461ISC
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
MCP-native open-source Notion alternative: read & write pages, databases and kanban boards.
Serve a folder of Markdown notes as an MCP server: hybrid search, reading, and sourced answers.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/maxim-ist/mcp-bear'
If you have feedback or need assistance with the MCP directory API, please join our Discord server