Beautiful writing app for Apple devices with Markdown support.
## Bear Notes MCP Server: Elegant Note-Taking The **Bear Notes MCP Server** integrates Bear's beautiful note-taking app into Google Antigravity, enabling developers on macOS and iOS to access, search, and manage their markdown notes through AI-assisted workflows. ### Why Bear Notes MCP? - **Beautiful Markdown**: Write in markdown with beautiful formatting and themes - **Hashtag Organization**: Organize notes with nested hashtags like #dev/frontend - **Cross-Linking**: Link notes together with [[wiki-style]] links - **Code Highlighting**: Syntax highlighting for 150+ programming languages - **Quick Export**: Export to PDF, HTML, DOCX, and more ### Key Features #### 1. Note Access and Search ```javascript // Search notes by tag and content const results = await bear.search({ tag: "dev/documentation", term: "API endpoints", limit: 20 }); // Get note content const note = await bear.getNote({ id: results[0].id }); console.log(note.title); console.log(note.content); // Markdown content console.log(note.tags); // ["dev", "dev/documentation"] console.log(note.modificationDate); ``` #### 2. Note Management ```javascript // Create new note with tags const newNote = await bear.createNote({ title: "API Authentication Guide", text: "# Authentication\n\nThis guide covers our auth flow...\n\n```typescript\nconst token = await auth.getToken();\n```", tags: ["dev/backend", "documentation"], pin: false }); // Append to existing note await bear.appendToNote({ id: existingNote.id, text: "\n\n## Updates\n- Added OAuth2 support" }); // Get notes by tag const backendNotes = await bear.getNotesByTag({ tag: "dev/backend" }); ``` ### Configuration ```json { "mcpServers": { "bear-notes": { "command": "npx", "args": ["-y", "@anthropic/mcp-bear"], "env": { "BEAR_API_TOKEN": "your-api-token" } } } } ``` ### Use Cases **Technical Documentation**: Keep code snippets, API references, and architecture notes in a beautiful format. **Learning Journal**: Document learnings, solutions, and best practices with proper code highlighting. **Project Notes**: Organize project-specific notes with nested tags for easy navigation. The Bear Notes MCP Server brings elegant note-taking into your AI-assisted development workflow.
{
"mcpServers": {
"bear-notes": {}
}
}