熊 Mcp 伺服器
概覽
什麼是 Bear MCP 伺服器?
Bear MCP 伺服器是一個專為 Bear 筆記應用程式設計的整合工具。它允許用戶通過提供無縫的連接和功能,將 Bear 與各種服務和平台連接起來,從而增強他們的筆記體驗。這種整合促進了更好的組織、檢索和管理筆記,使其成為希望優化工作流程的 Bear 用戶的必備工具。
Bear MCP 伺服器的功能
- 無縫整合:Bear MCP 伺服器與 Bear 應用程式輕鬆連接,使用戶能夠在設備和平台之間同步筆記。
- 增強的筆記管理:用戶可以更有效地分類和管理筆記,確保重要信息隨時可用。
- 可自定義設置:伺服器提供多種自定義選項,使用戶能夠根據自己的需求和偏好調整整合。
- 實時同步:在 Bear 中所做的更改會立即反映,確保用戶隨時擁有最新的信息。
- 友好的用戶界面:界面設計直觀,讓所有技能水平的用戶都能輕鬆導航並有效利用功能。
如何使用 Bear MCP 伺服器
- 安裝:首先從官方庫下載並安裝 Bear MCP 伺服器。
- 配置:按照設置說明配置伺服器以連接到您的 Bear 帳戶。這可能涉及輸入 API 密鑰或身份驗證詳細信息。
- 自定義:根據您的偏好調整設置,例如通知設置、同步間隔和筆記組織方法。
- 同步筆記:配置完成後,像往常一樣開始使用 Bear。MCP 伺服器將自動同步您的筆記和所做的任何更改。
- 訪問功能:探索通過 MCP 伺服器提供的各種功能,例如分類、標籤和實時協作。
常見問題解答
問:Bear MCP 伺服器是免費使用的嗎?
答:是的,Bear MCP 伺服器是開源的,免費使用。用戶可以無需任何費用下載和安裝。
問:我可以在多個設備上使用 Bear MCP 伺服器嗎?
答:當然可以!Bear MCP 伺服器支持在多個設備之間同步,確保您的筆記隨時隨地都能訪問。
問:Bear MCP 伺服器支持哪些平台?
答:Bear MCP 伺服器主要設計用於 macOS 和 iOS 上的 Bear 應用程式,但也可以通過其 API 與其他平台整合。
問:我該如何報告 Bear MCP 伺服器的問題或錯誤?
答:用戶可以通過訪問 GitHub 倉庫並通過提供的模板提交問題來報告問題或錯誤。
問:是否有社區或支持可供 Bear MCP 伺服器用戶使用?
答:是的,有一個活躍的用戶和開發者社區為 Bear MCP 伺服器項目做出貢獻。您可以通過論壇、GitHub 討論和社區渠道尋求支持。
詳細
Bear MCP Server
This project is a Model Context Protocol (MCP) server that provides access to the Bear Notes.
Bear stores notes on SQLite database. This MCP server runs some SQL commands to access this notes. https://bear.app/faq/where-are-bears-notes-located
Features
- Read notes
- Search notes by text
- List all tags
Installation
### Clone the project
git clone https://github.com/akseyh/bear-mcp-server
### Change directory
cd bear-mcp-server
### Install dependencies
npm install
### Build the project
npm run build
Claude Desktop Config
Update your claude_desktop_config.json
Docker
{
"mcpServers": {
"bear": {
"command": "docker",
"args": [
"run",
"-v",
"/Users/[YOUR_USER_NAME]/Library/Group Containers/9K33E3U3T4.net.shinyfrog.bear/Application Data:/app/db",
"-i",
"akseyh/bear-mcp-server"
]
}
}
}
NPM
{
"mcpServers": {
"bear": {
"command": "npx",
"args": [
"bear-mcp-server"
]
}
}
}
When the server is started, the following MCP tools become available:
get_notes
: Retrieves all notesget_tags
: Lists all tagsget_notes_like
: Searches for notes containing specific text
Requirements
- Node.js
- Bear note application (macOS)
- Access to Bear database
License
ISC
伺服器配置
{
"mcpServers": {
"bear-mcp-server": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/metorial/mcp-container--akseyh--bear-mcp-server--bear-mcp-server",
"npm run start"
],
"env": {}
}
}
}