MCP.so
ログイン

Bear App MCP

@sachin-philip

Bear App MCP について

An MCP server for Raindrop.io

基本情報

カテゴリ

その他

ライセンス

MIT

ランタイム

python

トランスポート

stdio

公開者

sachin-philip

設定

以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。

{
  "mcpServers": {
    "Raindrop": {
      "command": "uv",
      "args": [
        "--directory",
        "<location to project clone>",
        "run",
        "bear.py"
      ],
      "env": {}
    }
  }
}

ツール

ツールは検出されませんでした

ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。

概要

What is Bear App MCP?

Bear App MCP is a Python-based Machine Control Protocol server that provides a programming interface for Bear, a flexible writing app for notes and prose. It allows MCP-compatible clients to read, filter, and delete notes stored in Bear.

How to use Bear App MCP?

Install Python 3.11 and the UV package manager. In the project directory, run uv activate && uv install to install dependencies. Then add the JSON configuration snippet to your MCP client config, pointing the uv command to the bear.py file. The server will start and expose four tools.

Key features of Bear App MCP

  • Retrieve a list of recent notes sorted by update date
  • Filter notes by a specific tag using the '#' prefix
  • Get a summary (first 5 lines) of any note by title
  • Delete a note by title, marking it as trashed in Bear

Use cases of Bear App MCP

  • Quickly see your most recently updated notes without opening Bear
  • Find all notes tagged with a project or category (e.g., #work)
  • Read a note’s opening lines before deciding to open it fully
  • Remove unwanted notes programmatically from your MCP workflow

FAQ from Bear App MCP

What is Bear App MCP?

It is a Python-based MCP (Machine Control Protocol) server that lets you interact with the Bear note‑taking app. It provides tools to list, filter, read summaries, and delete notes.

What are the prerequisites?

Python 3.11 and the UV package manager are required. Install UV with curl -LsSf https://astral.sh/uv/install.sh | sh.

How do I install the dependencies?

After cloning the project, run uv activate && uv install in the project directory.

How do I configure the MCP server?

Add the following JSON to your MCP configuration, replacing <location to project clone> with the actual path:

{
  "mcpServers": {
    "Raindrop": {
      "command": "uv",
      "args": [
        "--directory",
        "<location to project clone>",
        "run",
        "bear.py"
      ],
      "env": {}
    }
  }
}

Which tools does Bear App MCP provide?

It provides four tools: get a list of notes, get notes by tag, get a note summary (first 5 lines), and delete a note.

コメント

「その他」の他のコンテンツ