mcp-bear
by jkawamoto·★ 70·Score 46
MCP server for Bear note-taking app with multiple client support and good documentation.
Overview
The Bear MCP server provides a comprehensive integration with Bear note-taking software, exposing numerous actions through the Model Context Protocol. It supports opening, creating, modifying notes, managing tags, and performing various organizational tasks within Bear. The server is actively maintained with recent commits and includes detailed installation instructions for multiple MCP clients including Goose, Claude Desktop, and LM Studio.
Try asking AI
After installing, here are 3 things you can ask your AI assistant:
When to choose this
Choose this MCP server if you use Bear for note-taking and want AI assistants to interact with your notes through the MCP protocol.
When NOT to choose this
Don't choose this if you use a different note-taking app or if you need full write capabilities to notes (some actions are partial).
Tools this server exposes
12 tools extracted from the README/open-noteOpens a specific Bear note
/createCreates a new Bear note
/add-textAdds text to an existing Bear note
/add-fileAdds a file to a Bear note
/tagsLists tags in Bear notes
/open-tagOpens all notes with a specific tag
/rename-tagRenames a tag in Bear notes
/delete-tagDeletes a tag from Bear notes
/trashMoves a Bear note to trash
/archiveArchives a Bear note
/untaggedShows notes without any tags
/searchSearches Bear notes with keywords
Comparable tools
Installation
Installation
- Install
uvon your system
- Set the
BEAR_API_TOKENenvironment variable to your API token
- Configure in your MCP client:
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"bear": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/jkawamoto/mcp-bear",
"mcp-bear",
"--token",
"<YOUR_TOKEN>"
]
}
}
}Goose
Add to ~/.config/goose/config.yaml:
extensions:
bear:
name: Bear
cmd: uvx
args: [--from, git+https://github.com/jkawamoto/mcp-bear, mcp-bear]
envs: { "BEAR_API_TOKEN": "<YOUR_TOKEN>" }
enabled: true
type: stdioLM Studio
Click the install button from the repository page or manually configure.
Compare mcp-bear with
Last updated · Auto-generated from public README + GitHub signals.