This project is a Model Context Protocol (MCP) server that provides access to the Bear Notes. Bear stores notes on SQLite database. This MCP server runs some SQL commands to access this notes. - Read notes - Search notes by text - List all tags Update your claudedesktopconfig.json When the server is started, the following MCP tools become available: - getnotes: Retrieves all notes - gettags: Lists
Add this skill
npx mdskills install akseyh/bear-mcp-serverProvides useful Bear Notes integration with clear setup, but lacks tool parameter details
1# Bear MCP Server23[](https://mseep.ai/app/akseyh-bear-mcp-server)45[](https://mseep.ai/app/4ba4aa63-76ae-41d7-9d41-851d9acf7013)67This project is a Model Context Protocol (MCP) server that provides access to the [Bear Notes](https://bear.app).89Bear stores notes on SQLite database. This MCP server runs some SQL commands to access this notes.10https://bear.app/faq/where-are-bears-notes-located11121314## Features1516- Read notes17- Search notes by text18- List all tags1920## Installation2122```bash23# Clone the project24git clone https://github.com/akseyh/bear-mcp-server2526# Change directory27cd bear-mcp-server2829# Install dependencies30npm install3132# Build the project33npm run build34```3536## Claude Desktop Config3738Update your claude_desktop_config.json3940### Docker41```json42{43 "mcpServers": {44 "bear": {45 "command": "docker",46 "args": [47 "run",48 "-v",49 "/Users/[YOUR_USER_NAME]/Library/Group Containers/9K33E3U3T4.net.shinyfrog.bear/Application Data:/app/db",50 "-i",51 "akseyh/bear-mcp-server"52 ]53 }54 }55}56```5758### NPM59```json60{61 "mcpServers": {62 "bear": {63 "command": "npx",64 "args": [65 "bear-mcp-server"66 ]67 }68 }69}70```7172When the server is started, the following MCP tools become available:7374- `get_notes`: Retrieves all notes75- `get_tags`: Lists all tags76- `get_notes_like`: Searches for notes containing specific text7778## Requirements7980- Node.js81- Bear note application (macOS)82- Access to Bear database8384## License8586ISC87
Full transparency — inspect the skill content before installing.