OlympHill
bear-mcp-server logo

bear-mcp-serverBear 笔记应用的 MCP 服务器集成

(0)
Daniel Nikulshyn审阅者 Daniel Nikulshyn·更新 2026年7月

概览

Bear MCP Server 是一个模型上下文协议(MCP)服务器,提供对存储在 Bear 笔记应用中的笔记的访问。Bear 将笔记存储在 SQLite 数据库中,该 MCP 服务器运行 SQL 命令来访问它们。该服务器允许用户读取笔记、按文本搜索笔记以及列出所有标签。它设计用于与 macOS 上的 Bear 笔记应用一起使用,需要访问 Bear 数据库。该服务器提供多个工具,包括 get_notes 以检索所有笔记,get_tags 以列出所有标签,get_notes_like 以搜索包含特定文本的笔记。该项目在 ISC 许可证下在 GitHub 上可用。

主要功能

  • 读取笔记
  • 按文本搜索笔记
  • 列出所有标签
  • 获取笔记
  • 获取标签
  • 获取类似笔记

价格

模型
Free
评分
暂无评价

使用场景

笔记检索

使用 MCP 服务器从 Bear 笔记应用中检索所有笔记

笔记搜索

使用 MCP 服务器搜索包含特定文本的笔记

优点 & 缺点

优点

  • 将 Bear 笔记应用与 MCP 工具集成
  • 允许检索笔记、按文本搜索笔记以及列出标签

缺点

  • 需要 Node.js 和 Bear 笔记应用(macOS)
  • 仅限于访问 Bear 数据库

评测

登录以留下评测。

暂无评测。来当第一个吧!

问答

Can I list all tags used across my Bear notes through this server?

Absolutely. The `get_tags` MCP tool retrieves a list of all tags stored in the Bear database, enabling you to programmatically access tag information.

Asked by Anya Sokolova · Apr 28, 2026

Is Bear MCP Server open source and what license does it use?

Yes, the project is open source on GitHub and released under the ISC license, which is a permissive, MIT‑style license allowing free use and modification.

Asked by Jovana Petrovic · Mar 4, 2026

How can I search for a specific phrase within my Bear notes?

Use the `get_notes_like` MCP tool, which runs an SQL query against the database to return all notes containing the specified text. This is available once the server is started.

Asked by Amos Fältskog · Feb 20, 2026

What is required to run Bear MCP Server on my machine?

You need Node.js installed, the Bear note app on macOS, and access to Bear’s SQLite database located in the app’s data folder. The server can be launched via npm or Docker as shown in the repo documentation.

Asked by Freya Solberg · Feb 12, 2026

提问

服务配缩器 的替代品