熊 MCP 服务器是一个可与 Bear 笔记软件进行交互的 MCP 服务器,为用户在不同应用中使用 Bear 提供了便利。
本服务器可在 Goose CLI、Goose Desktop、Claude Desktop 等不同环境中使用,下面为你详细介绍在各环境中的安装配置方法。
若要在 Goose CLI 中启用 Bear 扩展,需编辑配置文件 ~/.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": "" }
enabled: true
type: stdio
添加一个新的扩展,设置如下:
| 属性 | 详情 |
|---|---|
| 类型 | 标准 IO |
| ID | bear |
| 名称 | Bear |
| 描述 | 与 Bear 笔记软件交互 |
| 命令 | uvx --from git+https://github.com/jkawamoto/mcp-bear mcp-bear |
| 环境变量 | 添加 BEAR_API_TOKEN,值为你的 API 令牌 |
有关在 Goose Desktop 中配置 MCP 服务器的更多细节,请参考文档:使用扩展 - MCP 服务器。
要将此服务器配置为 Claude Desktop 使用,请编辑 claude_desktop_config.json 文件,在 mcpServers 下添加以下条目:
{
"mcpServers": {
"youtube-transcript": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/jkawamoto/mcp-bear",
"mcp-bear",
"--token",
""
]
}
}
}
编辑完成后,重启应用程序。有关更多信息,请参阅:针对 Claude Desktop 用户 - Model Context Protocol。
要通过 Smithery 自动安装 Bear MCP 服务器,可使用以下命令:
npx -y @smithery/cli install @jkawamoto/mcp-bear --client claude
该服务器支持以下动作,参考 Bear 的 X-callback-url 方案文档 以了解每个动作的详细信息。
查看此项目的许可证信息,请访问:GitHub 许可证。