bear-notes-mcp
MCP-сервер для Bear Notes
Ищите, читайте, создавайте и обновляйте свои заметки в Bear с помощью любого ИИ-ассистента. Доступен как расширение для Claude Desktop (установка в один клик) и как автономный npm-пакет для любого MCP-клиента.
Этот локальный MCP-сервер считывает базу данных SQLite приложения Bear для быстрого поиска с поддержкой OCR и использует нативный API Bear для записи. Полная конфиденциальность: никаких внешних подключений, вся обработка происходит на вашем Mac.
Примеры запросов:
Обобщи наш разговор и создай на его основе новую заметку в Bear
Проведи интервью по моей идее побочного проекта и зафиксируй ключевые моменты в заметке Bear
Помоги мне переструктурировать план в моей заметке "Запуск продукта"
Давай набросаем идеи для поста в блоге — сохрани лучшие из них в мою заметку Bear и дорабатывай их по ходу дела

✨ Ключевые особенности
13 инструментов MCP для поиска, чтения, создания, обновления, добавления тегов и архивирования заметок
OCR-поиск — находит текст внутри прикрепленных изображений и PDF-файлов
Поиск по дате с использованием относительных дат ("вчера", "на прошлой неделе", "в начале прошлого месяца")
Управление тегами — список тегов в виде дерева, поиск заметок без тегов, добавление тегов к заметкам
Конвенция новых заметок (опционально) — размещение тегов сразу после заголовка вместо нижней части заметки
Замена содержимого (опционально) — замена всего текста заметки или конкретного раздела
Только локально — никаких сетевых запросов, все данные остаются на вашем Mac
[!NOTE] Полная конфиденциальность (за исключением данных, которые вы отправляете своему ИИ-провайдеру при использовании ИИ-ассистента, разумеется): этот сервер не устанавливает никаких внешних соединений. Вся обработка происходит локально на вашем Mac с использованием собственной базы данных и API приложения Bear. Здесь нет никакой дополнительной телеметрии, статистики использования или чего-то подобного.
Related MCP server: Bear MCP Server
📦 Установка
Расширение для Claude Desktop
Предварительные требования: должны быть установлены приложение Bear и Claude Desktop.
Скачайте последний файл расширения
bear-notes-mcpb-*.mcpbиз раздела ReleasesУбедитесь, что Claude Desktop запущен (если нет — запустите его)
Дважды щелкните по файлу расширения — Claude Desktop должен показать запрос на установку
Если двойной щелчок по какой-то причине не работает, откройте Claude -> Settings -> Extensions -> Advanced Settings -> нажмите "Install Extension".
ГОТОВО!
Попросите Claude поискать ваши заметки в Bear с помощью запроса вроде "Search my Bear notes for 'meeting'" — вы должны увидеть свои заметки в ответе!
Автономный MCP-сервер
Хотите использовать этот MCP-сервер Bear Notes с Claude Code, Cursor, Codex или другими ИИ-ассистентами?
Требования: Node.js 24.13.0+
Claude Code (одна команда)
claude mcp add bear-notes --transport stdio -- npx -y bear-notes-mcp@latestДругие ИИ-ассистенты
Добавьте в свой конфигурационный файл MCP:
{
"mcpServers": {
"bear-notes": {
"command": "npx",
"args": ["-y", "bear-notes-mcp@latest"]
}
}
}Больше вариантов установки и настройки для локальной разработки — NPM.md
🛠️ Инструменты
bear-open-note- Чтение полного текста заметки Bear, включая текст, распознанный с помощью OCR из прикрепленных изображений и PDFbear-create-note- Создание новой заметки в вашей библиотеке Bear с опциональными заголовком, содержимым и тегамиbear-search-notes- Поиск заметок по тексту, фильтрация по тегам или диапазонам дат. Включает OCR-поиск во вложенияхbear-add-text- Вставка текста в начало или конец заметки Bear, либо в конкретный раздел, идентифицированный по заголовкуbear-replace-text- Замена содержимого в существующей заметке Bear — либо всего тела заметки, либо конкретного раздела. Требует включения функции замены содержимого в настройках.bear-add-file- Прикрепление файла к существующей заметке Bear. Укажите локальный путь к файлу (предпочтительно) или содержимое в формате base64.bear-list-tags- Список всех тегов в вашей библиотеке Bear в виде иерархического дерева с количеством заметокbear-find-untagged-notes- Поиск заметок в вашей библиотеке Bear, у которых нет назначенных теговbear-add-tag- Добавление одного или нескольких тегов к существующей заметке Bearbear-archive-note- Архивация заметки Bear для удаления её из активных списков без удаления самой заметкиbear-rename-tag- Переименование тега во всех заметках вашей библиотеки Bearbear-delete-tag- Удаление тега из всех заметок вашей библиотеки Bear без влияния на сами заметкиbear-grab-url- Сохранение веб-страницы как заметки Bear. Bear загружает страницу и преобразует её в markdown.
⚙️ Конфигурация
Отладочное логирование
Включите подробное логирование для устранения неполадок.
Claude Desktop: Settings → Extensions → Configure (рядом с Bear Notes) → переключите "Debug Logging" → Save → перезапустите Claude
Автономный MCP-сервер: установите переменную окружения
UI_DEBUG_TOGGLE=true
Конвенция новых заметок
По умолчанию Bear размещает теги в нижней части заметки при создании через API. Включите эту опцию, чтобы размещать теги сразу после заголовка, отделяя их горизонтальной линией.
┌──────────────────────────────┐
│ # Meeting Notes │ ← Note title
│ #work #meetings │ ← Tags right after title
│ │
│ --- │ ← Separator
│ │
│ Lorem Ipsum... │ ← Note body
└──────────────────────────────┘[!TIP] Эта конвенция отключена по умолчанию — она является опциональной, чтобы сохранить привычное поведение.
Claude Desktop: Settings → Extensions → Configure (рядом с Bear Notes) → переключите "New Note Convention" → Save → перезапустите Claude
Автономный MCP-сервер: установите переменную окружения
UI_ENABLE_NEW_NOTE_CONVENTION=true
Пример автономной конфигурации с включенной конвенцией:
{
"mcpServers": {
"bear-notes": {
"command": "npx",
"args": ["-y", "bear-notes-mcp@latest"],
"env": {
"UI_ENABLE_NEW_NOTE_CONVENTION": "true"
}
}
}
}Замена содержимого
Включите инструмент bear-replace-text для замены содержимого в существующих заметках — либо всего тела заметки, либо конкретного раздела под заголовком.
[!TIP] Эта функция отключена по умолчанию — она является опциональной, так как замена — это деструктивная операция.
Claude Desktop: Settings → Extensions → Configure (рядом с Bear Notes) → переключите "Content Replacement" → Save → перезапустите Claude
Автономный MCP-сервер: установите переменную окружения
UI_ENABLE_CONTENT_REPLACEMENT=true
Пример автономной конфигурации с включенной заменой содержимого:
{
"mcpServers": {
"bear-notes": {
"command": "npx",
"args": ["-y", "bear-notes-mcp@latest"],
"env": {
"UI_ENABLE_CONTENT_REPLACEMENT": "true"
}
}
}
}Технические детали
Этот сервер считывает базу данных SQLite ваших заметок Bear напрямую для операций поиска/чтения и использует API X-callback-URL приложения Bear для операций записи. Вся обработка данных происходит локально на вашем компьютере без внешних сетевых вызовов.
Поддерживаемые платформы
Только macOS, так как десктопная версия Bear работает только на macOS.
Логи
Claude Desktop:
Логи MCP-сервера находятся в
~/Library/Logs/Claude/main.log, ищитеbear-notes-mcpЛоги транспорта MCP находятся в
~/Library/Logs/Claude/mcp-server-Bear\ Notes.log
Автономный MCP-сервер:
Логи записываются в stderr; включите отладочное логирование с помощью
UI_DEBUG_TOGGLE=true
FAQ
Может ли это украсть мои данные?
Нет. Сервер только считывает локальную базу данных Bear (те же данные, которые показывает вам приложение Bear) и использует нативный API Bear для добавления текста в заметки. Никакой передачи по сети, никаких внешних серверов.
Почему SQLite, а не просто нативный API x-callback-url приложения Bear?
Для операций чтения (поиск/открытие) API x-callback-url возвращает данные заметки в ответе x-success: это потребовало бы сервера или специального бинарного файла для обработки ответов x-success — это рискованно и ненадежно. Прямой доступ к SQLite только для чтения проще и надежнее для поиска и чтения заметок.
Почему нативный Node.js SQLite, а не сторонние пакеты?
Это позволяет избежать поставки бинарного файла SQLite из сторонних пакетов node, что создает риски для цепочки поставок и блокирует работу расширения Claude Desktop на macOS.
Anthropic (очевидно) не подписывает сторонние бинарные файлы SQLite, из-за чего системы безопасности macOS помечают, что процесс Claude, подписанный Anthropic, пытается запустить другой бинарный файл, подписанный третьей стороной. В результате Claude Desktop не может запустить расширение.
Когда я устанавливаю расширение, я вижу красное предупреждение: "Установка предоставит доступ ко всему на вашем компьютере." — что это значит?
Так Claude для Desktop реагирует на тот факт, что этому расширению нужен доступ к базе данных SQLite приложения Bear на вашем Mac.
Система предупреждений Claude не различает необходимость доступа только к одному файлу (что и делает расширение) и необходимость доступа ко всем файлам (это НЕ то, что делает расширение).
Один из способов проверить это — попросить ваш Claude проанализировать кодовую базу (она довольно маленькая) перед установкой расширения.
Как я могу сообщить об ошибке или внести свой вклад?
Используйте issues или обсуждения! Буду рад вашим отзывам, предложениям или помощи в улучшении этого проекта! ❤️
Будьте в курсе
Рекомендую подписаться на анонсы релизов, чтобы знать, когда выходит новая версия:

Я также публикую информацию на reddit.com/r/bearapp/, когда выходит новый релиз.
Available Tools
5 toolsbear-capabilitiesBear Notes CapabilitiesARead-onlyIdempotent
Report the current Bear Notes MCP server mode and how to unlock additional capabilities. Call this when the user asks what you can do with their Bear notes, when a write operation appears unavailable, or when the user wants to enable note creation, editing, or tag management.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations indicate readOnlyHint=true and idempotentHint=true. Description adds context that the tool reports current mode and unlock instructions, which goes beyond annotations. It does not contradict annotations and clarifies the tool is informational.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Description is two sentences with no filler. It is front-loaded with the core action and then adds usage guidance. Every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no parameters, no output schema, and a simple task, the description is sufficient. It explains the tool's purpose and when to use it. Could mention what specifically 'reporting mode' outputs, but it is adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Tool has no parameters, so the schema coverage is effectively 100%. Description adds no parameter info, but with zero parameters this is not needed. The baseline for 0 parameters is 4, and the description meets it.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description explicitly states the tool reports the current mood and how to unlock additional capabilities. Verb 'Report' and resource 'Bear Notes MCP server mode' are specific and distinct from sibling tools like bear-search-notes or bear-list-tags.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Description provides explicit scenarios for when to call: when user asks what can be done with Bear notes, when write operations seem unavailable, or when user wants to enable note creation/editing/tag management. This clarity helps the agent choose this tool over alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
bear-find-untagged-notesFind Untagged NotesARead-onlyIdempotent
Find notes in your Bear library that have no tags. Useful for organizing and categorizing notes. Trashed and archived notes are not included.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of results (default: 50, min: 1) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only and idempotent behavior. The description adds valuable context by stating that trashed and archived notes are excluded, which is beyond the annotations. No contradictions and the added behavioral detail is clear.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise, consisting of three short sentences. The first sentence immediately communicates the action, the second adds context, and the third provides an important scope exclusion. No superfluous information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the tool's purpose, use case, and exclusion of trashed/archived notes. It does not mention return format or the limit parameter, but given the tool's simplicity and the schema covering limit, it is mostly complete. A minor gap is the lack of output format hints.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 100% schema coverage for the single parameter 'limit', the schema already documents its type, range, and default. The description does not add any additional semantic meaning for the parameter, so baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool finds notes without tags in Bear library, explicitly excluding trashed and archived notes. It distinguishes itself from sibling tools like bear-search-notes by focusing on untagged notes, providing a specific verb-resource-scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description mentions 'useful for organizing and categorizing notes' but does not provide explicit guidance on when to use this tool versus alternatives like bear-search-notes or bear-list-tags. No when-not-to-use or direct comparisons are given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
bear-list-tagsList Bear TagsARead-onlyIdempotent
List all tags in your Bear library as a hierarchical tree. Shows tag names with note counts. Useful for understanding your tag structure and finding tags to apply to untagged notes. Counts include only active notes (trashed and archived are excluded). Tags with zero active notes are not shown.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint, openWorldHint, and idempotentHint. The description adds behavioral details beyond annotations: counts exclude trashed/archived notes and tags with zero active notes. No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences that are well-structured and front-loaded. Each sentence provides essential information without redundancy or unnecessary detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter read-only tool with good annotations, the description is complete. It explains the output format, what's included/excluded, and the tool's utility.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With zero parameters, the schema coverage is 100%. The description adds value by explaining what the output contains (hierarchical tree, note counts), which is helpful given no output schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool lists all tags as a hierarchical tree with note counts, and explicitly excludes trashed/archived notes and tags with zero active notes. This is a specific verb+resource that distinguishes it from siblings like bear-find-untagged-notes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description says it is useful for understanding tag structure and finding tags for untagged notes, implying when to use it. However, it does not explicitly state when not to use it or mention alternatives, though siblings provide context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
bear-open-noteOpen Bear NoteARead-onlyIdempotent
Read the full text content of a Bear note by its ID or title. Supports direct title lookup as an alternative to searching first. Always includes text extracted from attached images and PDFs (aka OCR search) with clear labeling.
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | Note identifier (ID) for an existing Bear note. Either id or title must be provided. | |
| title | No | Exact note title for direct lookup (case-insensitive). Either id or title must be provided. If multiple notes share the same title, returns a list for disambiguation. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond annotations (readOnlyHint=true, idempotentHint=true), description discloses that OCR text from images/PDFs is included and clearly labeled. No contradictions with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, no waste. Front-loaded with main action. Every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with two parameters and no output schema, the description covers purpose, parameter usage, and important behavioral detail (OCR inclusion). Complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema has 100% coverage, and description adds extra meaning: title is case-insensitive, and if multiple notes share the same title, returns a list for disambiguation. This is valuable beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states it reads full text content of a Bear note by ID or title. Explicitly mentions direct title lookup as alternative to searching, and includes OCR text from images/PDFs. Distinguishes from sibling tools like bear-search-notes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides guidance on when to use direct title lookup versus searching first. Does not explicitly exclude use cases or mention siblings for comparison, but the context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
bear-search-notesFind Bear NotesARead-onlyIdempotent
Search your Bear notes for words or phrases. The search looks across note titles, body content, and OCR text in attached images and PDFs, returning matching notes ranked by relevance with a snippet of the matching context — so you can see what matched without opening the note. For best results, search with a phrase or several words from what you're looking for; a single word also works. Also supports filtering by tag, by creation/modification date range, or by pinned status — combine these with a search term, or use them on their own to browse without searching. Trashed and archived notes are not included.
| Name | Required | Description | Default |
|---|---|---|---|
| tag | No | Tag to filter notes by (leading # is stripped if present) | |
| term | No | Words to search for. Results are ranked by relevance — notes covering more of what you typed rank higher. Pass natural keywords for the typical case (e.g., "quarterly planning notes"). Hyphenated or punctuated identifiers like "bear-notes-mcp" or "2026-04-15" are matched as a phrase when used alone; in multi-word queries they are treated like any other word. | |
| limit | No | Maximum number of results to return (default: 30, min: 1) | |
| pinned | No | Set to true to return only pinned notes: if combined with tag, will return pinned notes with that tag, otherwise only globally pinned notes. | |
| createdAfter | No | Filter notes created on or after this date. Supports: relative dates ("today", "yesterday", "last week", "start of last month"), ISO format (YYYY-MM-DD). Use "start of last month" for the beginning of the previous month. | |
| createdBefore | No | Filter notes created on or before this date. Supports: relative dates ("today", "yesterday", "last week", "end of last month"), ISO format (YYYY-MM-DD). Use "end of last month" for the end of the previous month. | |
| modifiedAfter | No | Filter notes modified on or after this date. Supports: relative dates ("today", "yesterday", "last week", "start of last month"), ISO format (YYYY-MM-DD). Use "start of last month" for the beginning of the previous month. | |
| modifiedBefore | No | Filter notes modified on or before this date. Supports: relative dates ("today", "yesterday", "last week", "end of last month"), ISO format (YYYY-MM-DD). Use "end of last month" for the end of the previous month. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations indicate read-only, idempotent behavior. Description adds context: notes are ranked by relevance, returns snippets, and excludes trashed/archived notes. No contradictions with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Structured in a logical flow: purpose, return format, usage tips, then filter details. Front-loaded with the core function. All sentences add value, though slightly verbose for a summary.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 8 optional parameters and no output schema, the description thoroughly covers search scope, result format, filter options, and exclusions (trashed/archived). Provides sufficient context for an agent to use effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema covers 100% of parameters with descriptions. The tool description adds extra context: explains term matching with hyphenated identifiers, that tag strips leading #, and relative date formats. That adds value beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool searches Bear notes for words or phrases, covering titles, body, and OCR content. It distinguishes itself from siblings (e.g., bear-list-tags, bear-open-note) by focusing on search and retrieval.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit guidance on best practices (phrase or several words for best results) and explains how to combine filters or use them independently. Notes that trashed/archived notes are excluded, but does not explicitly mention alternatives among siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
12 tool updates
v3.0.1- Removed
bear-add-file - Removed
bear-add-tag - Removed
bear-add-text - Removed
bear-archive-note - Added
bear-capabilities - Removed
bear-create-note - Removed
bear-delete-tag - Changed
bear-find-untagged-notes4 fields changed- changed
Input schema / properties / limit / descriptionPrevious value: -"Maximum number of results (default: 50)"New value: +"Maximum number of results (default: 50, min: 1)" - added
Input schema / properties / limit / maximumAdded value: +9007199254740991 - added
Input schema / properties / limit / minimumAdded value: +1 - changed
Input schema / properties / limit / typePrevious value: -"number"New value: +"integer"
- Changed
bear-open-note1 field changed- changed
Input schema / properties / id / descriptionPrevious value: -"Note identifier (ID) from bear-search-notes. Either id or title must be provided."New value: +"Note identifier (ID) for an existing Bear note. Either id or title must be provided."
- Removed
bear-rename-tag - Removed
bear-replace-text - Changed
bear-search-notes6 fields changed- changed
Input schema / properties / limit / descriptionPrevious value: -"Maximum number of results to return (default: 50)"New value: +"Maximum number of results to return (default: 30, min: 1)" - added
Input schema / properties / limit / maximumAdded value: +9007199254740991 - added
Input schema / properties / limit / minimumAdded value: +1 - changed
Input schema / properties / limit / typePrevious value: -"number"New value: +"integer" - changed
Input schema / properties / tag / descriptionPrevious value: -"Tag to filter notes by (without # symbol)"New value: +"Tag to filter notes by (leading # is stripped if present)" - changed
Input schema / properties / term / descriptionPrevious value: -"Text to search for in note titles and content"New value: +"Words to search for. Results are ranked by relevance — notes covering more of what you typed rank higher. Pass natural keywords for the typical case (e.g., \"quarterly planning notes\"). Hyphenated or punctuated identifiers like \"bear-notes-mcp\" or \"2026-04-15\" are matched as a phrase when used alone; in multi-word queries they are treated like any other word."
TDQS
Each tool has a clearly distinct purpose: capabilities for mode info, find-untagged-notes for organizing, list-tags for hierarchy, open-note for reading, search-notes for searching. No overlap.
All tools follow a consistent 'bear-verb-noun' pattern (bear-capabilities, bear-find-untagged-notes, bear-list-tags, bear-open-note, bear-search-notes). Camel-case and hyphens are used uniformly.
5 tools is well-scoped for a note-taking assistant. Covers core read and organization tasks without being excessive or thin.
The server lacks create, update, and delete operations for notes and tags. It is read-only and search-focused, with no ability to modify notes or manage tags beyond listing. Significant gaps for a full note-management tool.
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 Connectors
- TaprootOAuthcom.taproothq
Persistent memory layer for AI tools. Save and recall notes across Claude and other MCP clients.
MCP-native notes and memory for ChatGPT, Claude, and other AI tools.
Markdown-based note-taking with a hosted MCP server. Your notes serve you and your AI.
MCP server unifying ERPs, CRMs, APIs and knowledge base for Claude, ChatGPT and Gemini.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceAllows the AI to read from your Bear Notes3245MIT
- AlicenseAqualityCmaintenanceAn MCP server that integrates Bear Note Taking App with Claude Desktop, allowing Claude to read, create, search notes and manage tags directly from Bear.71MIT
- FlicenseBqualityDmaintenanceA Model Context Protocol server that provides Claude with access to search, retrieve, and analyze notes from the Bear App through natural language queries.78-
- AlicenseAqualityDmaintenanceA Python-based MCP server that provides read and write access to Bear Notes on macOS using SQLite for data retrieval and x-callback-url for modifications. It enables users to search, create, archive, and manage notes and tags directly through a Model Context Protocol interface.161ISC
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/vasylenko/bear-notes-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server