mcp-bear
by jkawamoto·★ 70·综合分 46
Bear 笔记应用的 MCP 服务器,支持多个客户端且文档完善。
概述
Bear MCP 服务器与 Bear 笔记软件全面集成,通过模型上下文协议提供多种操作功能。它支持打开、创建、修改笔记,管理标签以及在 Bear 内执行各种组织任务。服务器有积极的维护和更新,包含 Goose、Claude Desktop 和 LM Studio 等多个 MCP 客户端的详细安装说明。
试试问 AI
装完之后,这里有 3 个你可以让 AI 做的事:
什么时候选它
如果你使用 Bear 进行笔记管理,并希望 AI 助手通过 MCP 协议与你的笔记互动,应该选择这个 MCP 服务器。
什么时候不要选它
如果你使用其他笔记应用,或者需要完全的笔记写入功能(某些操作是部分的),不要选择这个服务器。
此 server 暴露的工具
从 README 抽取出 12 个工具/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
可对比工具
安装
安装
- 在系统上安装
uv
- 设置
BEAR_API_TOKEN环境变量为您的 API 令牌
- 在您的 MCP 客户端中配置:
Claude Desktop
添加到 claude_desktop_config.json:
{
"mcpServers": {
"bear": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/jkawamoto/mcp-bear",
"mcp-bear",
"--token",
"<YOUR_TOKEN>"
]
}
}
}Goose
添加到 ~/.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
从仓库页面点击安装按钮或手动配置。
mcp-bear 对比
最后更新于 · 由 README + GitHub 公开数据自动生成。