Skip to content

Instantly share code, notes, and snippets.

@voluntas
Last active April 25, 2025 02:11
Show Gist options
  • Save voluntas/e9cca6a8ca3ea5df652b7078b42e54a6 to your computer and use it in GitHub Desktop.
Save voluntas/e9cca6a8ca3ea5df652b7078b42e54a6 to your computer and use it in GitHub Desktop.

Revisions

  1. voluntas revised this gist Apr 24, 2025. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions mcp_zadankai_2025_04.md
    Original file line number Diff line number Diff line change
    @@ -166,6 +166,7 @@ def sora_connection_log(connection_id: str) -> str:
    - とても素敵な資料
    - Sampling が乗ってるのが良い
    - [2025年4月、AIとクラウドネイティブの交差点で語った2日間の記録 \#CNDS2025 \#hack\_at\_delta \- じゃあ、おうちで学べる](https://syu-m-5151.hatenablog.com/entry/2025/04/24/113500)
    - [microsoft/playwright\-mcp: Playwright MCP server](https://github.com/microsoft/playwright-mcp)

    ### RAG

  2. voluntas revised this gist Apr 24, 2025. 1 changed file with 2 additions and 5 deletions.
    7 changes: 2 additions & 5 deletions mcp_zadankai_2025_04.md
    Original file line number Diff line number Diff line change
    @@ -92,11 +92,8 @@
    - API を実行する
    - 問題が起きたとき MCP 経由で問い合わせてヒントが貰えるのは嬉しい
    - ウェブフック機能を持たせて通知の仕組みを入れたりしたい
    - <https://gyazo.com/27aeb1f71e9999d7dd1006c600dbede6>
    - <https://gyazo.com/28b4cfae33d2a06029212eaeab5eadda>
    - <https://gyazo.com/37573aa76faa216a8a675381650ba233>
    - <https://gyazo.com/cd0305279735f7e537bb69846ea0766e>
    - <https://gyazo.com/1ae1f29076ed4fe9d6fe48c2ecf66bc1>
    - <https://gyazo.com/4b55a41168c1bbca76d3f077ede22d86>
    - 動画

    ```python
    @mcp.tool(description="Sora: Connection log file")
  3. voluntas revised this gist Apr 24, 2025. 1 changed file with 16 additions and 0 deletions.
    16 changes: 16 additions & 0 deletions mcp_zadankai_2025_04.md
    Original file line number Diff line number Diff line change
    @@ -98,6 +98,22 @@
    - <https://gyazo.com/cd0305279735f7e537bb69846ea0766e>
    - <https://gyazo.com/1ae1f29076ed4fe9d6fe48c2ecf66bc1>

    ```python
    @mcp.tool(description="Sora: Connection log file")
    def sora_connection_log(connection_id: str) -> str:
    """
    Sora: Connection log file
    Returns:
    str: The connection log file
    """
    conn = duckdb.connect()
    result = conn.sql(
    f"SELECT * FROM read_json('{os.path.join(sora_settings.sora_dir, 'log', 'connection.jsonl')}') WHERE connection_id = '{connection_id}'"
    )
    return str(result.fetchone())
    ```

    ### MCP

    - VS Code が対応している
  4. voluntas revised this gist Apr 24, 2025. 1 changed file with 8 additions and 0 deletions.
    8 changes: 8 additions & 0 deletions mcp_zadankai_2025_04.md
    Original file line number Diff line number Diff line change
    @@ -76,6 +76,8 @@
    - RAG を利用したドキュメント生成
    - ドキュメントに MCP を生やしたい
    - <https://sora-doc.shiguredo.app/mcp>
    - <https://gyazo.com/2c476f3310230be608adbdf898735cdc>
    - <https://gyazo.com/d418b6644c657c034a7769e6f09dd246>

    ### 自社製品紹介 MCP

    @@ -90,6 +92,11 @@
    - API を実行する
    - 問題が起きたとき MCP 経由で問い合わせてヒントが貰えるのは嬉しい
    - ウェブフック機能を持たせて通知の仕組みを入れたりしたい
    - <https://gyazo.com/27aeb1f71e9999d7dd1006c600dbede6>
    - <https://gyazo.com/28b4cfae33d2a06029212eaeab5eadda>
    - <https://gyazo.com/37573aa76faa216a8a675381650ba233>
    - <https://gyazo.com/cd0305279735f7e537bb69846ea0766e>
    - <https://gyazo.com/1ae1f29076ed4fe9d6fe48c2ecf66bc1>

    ### MCP

    @@ -159,6 +166,7 @@
    - ベクトル化
    - <https://huggingface.co/pfnet/plamo-embedding-1b>
    - <https://huggingface.co/cl-nagoya/ruri-v3-310m>
    - prefix が必要
    - DuckDB
    - <https://github.com/duckdb/duckdb-vss>
    - <https://duckdb.org/docs/stable/extensions/vss.html>
  5. voluntas revised this gist Apr 24, 2025. 1 changed file with 27 additions and 8 deletions.
    35 changes: 27 additions & 8 deletions mcp_zadankai_2025_04.md
    Original file line number Diff line number Diff line change
    @@ -57,7 +57,7 @@
    - 個人ツールとしての MCP ではなくビジネスとしての MCP 利用が強い
    - なので使う側ではなく作って提供する側
    - MCP プロトコル自体にはほぼ興味は無い
    - ただしサーバープッシュ型の MCP Sampling は凄く興味ある
    - ただしサーバープッシュ型の MCP Resource のサブスクライブと Sampling は凄く興味ある
    - MCP は利用者を助けるために提供したい
    - VS Code など開発エディターからの利用を想定
    - 気軽に「この機能って何?」とか「今どうなってる?」と聞けるようにしたい
    @@ -98,10 +98,11 @@
    - MCP クライアントがユーザ側で動き LLM での処理はユーザー側の費用負担になる
    - これが企業が乗っかりやすい理由だと考えてる
    - MCP 2025-03-26 仕様
    - <https://spec.modelcontextprotocol.io/specification/2025-03-26/>
    - <https://spec.modelcontextprotocol.io/specification/2025-03-26/server/tools/>
    - <https://spec.modelcontextprotocol.io/specification/2025-03-26/server/prompts/>
    - <https://spec.modelcontextprotocol.io/specification/2025-03-26/server/resources/>
    - <https://modelcontextprotocol.io/specification/2025-03-26/>
    - <https://modelcontextprotocol.io/specification/2025-03-26/server/tools/>
    - <https://modelcontextprotocol.io/specification/2025-03-26/server/prompts/>
    - <https://modelcontextprotocol.io/specification/2025-03-26/server/resources/>
    - <https://modelcontextprotocol.io/specification/2025-03-26/client/sampling>
    - MCP VS Code 対応
    - <https://code.visualstudio.com/docs/copilot/chat/mcp-servers>
    - <https://code.visualstudio.com/updates/v1_99#_model-context-protocol-server-support>
    @@ -111,13 +112,18 @@
    - <https://github.com/modelcontextprotocol/python-sdk>
    - <https://github.com/modelcontextprotocol/python-sdk?tab=readme-ov-file#resources>
    - <https://github.com/modelcontextprotocol/python-sdk?tab=readme-ov-file#prompts>
    - SDK のコード見てると、正直かなり行けてないと感じてる
    - そもそも SSE 周りはハックしないと動かない(なおってるのか?)
    - MCP TypeScript SDK
    - <https://github.com/modelcontextprotocol/typescript-sdk>
    - 個人利用で LLM 使わないのであれば TypeScript SDK 1 択だと思ってる
    - modelcontextprotocol/go-sdk
    - <https://github.com/orgs/modelcontextprotocol/discussions/224>
    - MCP HTTP トランスポート
    - <https://spec.modelcontextprotocol.io/specification/2025-03-26/basic/transports/#streamable-http>
    - <https://modelcontextprotocol.io/specification/2025-03-26/basic/transports/#streamable-http>
    - SSE はオプションへ、ただプッシュにスゴイ強みがあるとおもっているので SSE は使うべき派
    - MCP 認可
    - <https://spec.modelcontextprotocol.io/specification/2025-03-26/basic/authorization/>
    - <https://modelcontextprotocol.io/specification/2025-03-26/basic/authorization/>
    - <https://tailscale.com/>
    - MCP クライアント
    - <https://claude.ai/download>
    @@ -126,22 +132,30 @@
    - VS Code などの開発エディタが一番
    - ChatGPT Desktop / Claude Desktop などは設定がややこしい
    - それよりはブラウザでできる独自の MCP ホストを閉じた顧客向けに提供する方が良い気がしている
    - MCP セキュリティ
    - 野良を使わない
    - OSS 以外は使わない
    - 公式でも気をつけて使う
    - MCP ロードマップ
    - <https://modelcontextprotocol.io/development/roadmap>
    - <https://modelcontextprotocol.io/development/roadmap#multimodality>
    - Streaming: multipart, chunked messages, and bidirectional communication for interactive experiences
    - [punkpeye/awesome\-mcp\-servers: A collection of MCP servers\.](https://github.com/punkpeye/awesome-mcp-servers)
    - [punkpeye/awesome\-mcp\-clients: A collection of MCP clients\.](https://github.com/punkpeye/awesome-mcp-clients)
    - [ここはMCPの夜明けまえ \- Speaker Deck](https://speakerdeck.com/nwiizo/kokohamcpnoye-ming-kemae)
    - とても素敵な資料
    - Sampling が乗ってるのが良い
    - [2025年4月、AIとクラウドネイティブの交差点で語った2日間の記録 \#CNDS2025 \#hack\_at\_delta \- じゃあ、おうちで学べる](https://syu-m-5151.hatenablog.com/entry/2025/04/24/113500)

    ### RAG

    - 本格的にやると大変そうなので、あくまで主力事業を補完するという立場での興味
    - MCP とドキュメント
    - <https://x.com/MIITON/status/1908712839352909963>
    - <https://github.com/Unstructured-IO/unstructured>
    - <https://platform.openai.com/docs/guides/embeddings>
    - ドキュメント分割
    - スゴイキモなのに誰も話をしていないように思うのは自分が LLM 素人だからだとおもう
    - <https://github.com/Unstructured-IO/unstructured>
    - ベクトル化
    - <https://huggingface.co/pfnet/plamo-embedding-1b>
    - <https://huggingface.co/cl-nagoya/ruri-v3-310m>
    @@ -155,3 +169,8 @@
    - <https://github.com/meilisearch/meilisearch/releases/tag/v1.14.0>
    - Composite embedders
    - <https://www.meilisearch.com/pricing>

    ## A2A プロトコル

    - [google/A2A: An open protocol enabling communication and interoperability between opaque agentic applications\.](https://github.com/google/a2a)
    - 特に興味なし
  6. voluntas revised this gist Apr 24, 2025. 1 changed file with 12 additions and 6 deletions.
    18 changes: 12 additions & 6 deletions mcp_zadankai_2025_04.md
    Original file line number Diff line number Diff line change
    @@ -54,6 +54,8 @@

    - Erlang/OTP でリアルタイム通信系のミドルウェアを書くプロトコル実装屋さん
    - LLM は素人
    - 個人ツールとしての MCP ではなくビジネスとしての MCP 利用が強い
    - なので使う側ではなく作って提供する側
    - MCP プロトコル自体にはほぼ興味は無い
    - ただしサーバープッシュ型の MCP Sampling は凄く興味ある
    - MCP は利用者を助けるために提供したい
    @@ -113,19 +115,17 @@
    - <https://github.com/orgs/modelcontextprotocol/discussions/224>
    - MCP HTTP トランスポート
    - <https://spec.modelcontextprotocol.io/specification/2025-03-26/basic/transports/#streamable-http>
    - SSE はオプションへ
    - SSE はオプションへ、ただプッシュにスゴイ強みがあるとおもっているので SSE は使うべき派
    - MCP 認可
    - <https://spec.modelcontextprotocol.io/specification/2025-03-26/basic/authorization/>
    - <https://tailscale.com/>
    - MCP クライアント
    - <https://claude.ai/download>
    - <https://code.visualstudio.com/docs/copilot/chat/mcp-servers>
    - <https://docs.cursor.com/context/model-context-protocol>
    - MCP とドキュメント
    - <https://x.com/MIITON/status/1908712839352909963>
    - <https://github.com/Unstructured-IO/unstructured>
    - <https://www.meilisearch.com/blog/introducing-hybrid-search>
    - <https://platform.openai.com/docs/guides/embeddings>
    - VS Code などの開発エディタが一番
    - ChatGPT Desktop / Claude Desktop などは設定がややこしい
    - それよりはブラウザでできる独自の MCP ホストを閉じた顧客向けに提供する方が良い気がしている
    - MCP ロードマップ
    - <https://modelcontextprotocol.io/development/roadmap>
    - [punkpeye/awesome\-mcp\-servers: A collection of MCP servers\.](https://github.com/punkpeye/awesome-mcp-servers)
    @@ -136,6 +136,12 @@

    ### RAG

    - MCP とドキュメント
    - <https://x.com/MIITON/status/1908712839352909963>
    - <https://github.com/Unstructured-IO/unstructured>
    - <https://platform.openai.com/docs/guides/embeddings>
    - ドキュメント分割
    - スゴイキモなのに誰も話をしていないように思うのは自分が LLM 素人だからだとおもう
    - ベクトル化
    - <https://huggingface.co/pfnet/plamo-embedding-1b>
    - <https://huggingface.co/cl-nagoya/ruri-v3-310m>
  7. voluntas revised this gist Apr 24, 2025. 1 changed file with 43 additions and 26 deletions.
    69 changes: 43 additions & 26 deletions mcp_zadankai_2025_04.md
    Original file line number Diff line number Diff line change
    @@ -21,7 +21,7 @@
    - 書き込みには電話番号認証が必要
    - `#event` チャネルの `MCP 座談会 (2025-04)``参加します` と書いて申し込む
    - そうすると `2025-04-24` というロールが付与される
    - `#2025-01-24` というプライベートチャネルに参加できるようになる
    - `#2025-04-24` というプライベートチャネルに参加できるようになる

    ### 注意事項

    @@ -50,6 +50,45 @@

    ## [@voluntas](https://x.com/voluntas)

    ### 立ち位置

    - Erlang/OTP でリアルタイム通信系のミドルウェアを書くプロトコル実装屋さん
    - LLM は素人
    - MCP プロトコル自体にはほぼ興味は無い
    - ただしサーバープッシュ型の MCP Sampling は凄く興味ある
    - MCP は利用者を助けるために提供したい
    - VS Code など開発エディターからの利用を想定
    - 気軽に「この機能って何?」とか「今どうなってる?」と聞けるようにしたい
    - MCP は Python か Go を想定
    - LLM 連携が必要な場合は Python
    - それ以外であれば Go でよいと考えている

    ## 時雨堂でやろうとしてること

    - MCP 認証は API Key で十分そう
    - HTTP 前提
    - ローカルにインストールして貰うのは厳しい

    ### 自社製品ドキュメント MCP

    - RAG を利用したドキュメント生成
    - ドキュメントに MCP を生やしたい
    - <https://sora-doc.shiguredo.app/mcp>

    ### 自社製品紹介 MCP

    - 自社製品サイトに MCP を生やしたい
    - <https://sora.shiguredo.app/mcp> みたいなイメージ
    - もともと自社製品サイトに RAG を設定したいと考えていた

    ### 自社製品ドクター MCP

    - 自社ミドルウェアのトラブルシューティング
    - ログを検索して問題を探す
    - API を実行する
    - 問題が起きたとき MCP 経由で問い合わせてヒントが貰えるのは嬉しい
    - ウェブフック機能を持たせて通知の仕組みを入れたりしたい

    ### MCP

    - VS Code が対応している
    @@ -91,6 +130,9 @@
    - <https://modelcontextprotocol.io/development/roadmap>
    - [punkpeye/awesome\-mcp\-servers: A collection of MCP servers\.](https://github.com/punkpeye/awesome-mcp-servers)
    - [punkpeye/awesome\-mcp\-clients: A collection of MCP clients\.](https://github.com/punkpeye/awesome-mcp-clients)
    - [ここはMCPの夜明けまえ \- Speaker Deck](https://speakerdeck.com/nwiizo/kokohamcpnoye-ming-kemae)
    - とても素敵な資料
    - Sampling が乗ってるのが良い

    ### RAG

    @@ -107,28 +149,3 @@
    - <https://github.com/meilisearch/meilisearch/releases/tag/v1.14.0>
    - Composite embedders
    - <https://www.meilisearch.com/pricing>

    ## 時雨堂でやろうとしてること

    - 認証は API Key とかか?
    - HTTP 前提
    - ローカルにインストールして貰うのは厳しい

    ### 自社製品ドキュメント MCP

    - RAG を利用したドキュメント生成
    - ドキュメントに MCP を生やしたい
    - <https://sora-doc.shiguredo.app/mcp>

    ### 自社製品紹介 MCP

    - ウェブサイトに MCP を生やしたい
    - <https://sora.shiguredo.app/mcp> みたいなイメージ

    ### 自社製品ドクター MCP

    - 自社ミドルウェアのトラブルシューティング
    - ログを検索して問題を探す
    - API を実行する
    - ウェブフック機能を持たせて通知の仕組みを入れたりしたい
    - 問題が起きたとき MCP 経由で問い合わせてヒントが貰えるのは嬉しい
  8. voluntas revised this gist Apr 24, 2025. 1 changed file with 3 additions and 2 deletions.
    5 changes: 3 additions & 2 deletions mcp_zadankai_2025_04.md
    Original file line number Diff line number Diff line change
    @@ -48,7 +48,6 @@
    [![Image from Gyazo](https://i.gyazo.com/8a2fb9badc9af1384bf50f63b3459fbc.png)](https://gyazo.com/8a2fb9badc9af1384bf50f63b3459fbc)
    </details>


    ## [@voluntas](https://x.com/voluntas)

    ### MCP
    @@ -111,8 +110,9 @@

    ## 時雨堂でやろうとしてること

    - 認証あり
    - 認証は API Key とかか?
    - HTTP 前提
    - ローカルにインストールして貰うのは厳しい

    ### 自社製品ドキュメント MCP

    @@ -131,3 +131,4 @@
    - ログを検索して問題を探す
    - API を実行する
    - ウェブフック機能を持たせて通知の仕組みを入れたりしたい
    - 問題が起きたとき MCP 経由で問い合わせてヒントが貰えるのは嬉しい
  9. voluntas revised this gist Apr 24, 2025. 1 changed file with 6 additions and 1 deletion.
    7 changes: 6 additions & 1 deletion mcp_zadankai_2025_04.md
    Original file line number Diff line number Diff line change
    @@ -42,7 +42,12 @@

    ### 他の座談会の様子

    [![Image from Gyazo](https://i.gyazo.com/8a2fb9badc9af1384bf50f63b3459fbc.png)](https://gyazo.com/8a2fb9badc9af1384bf50f63b3459fbc)
    <details>
    <summary>Discord のスクリーンショット</summary>

    [![Image from Gyazo](https://i.gyazo.com/8a2fb9badc9af1384bf50f63b3459fbc.png)](https://gyazo.com/8a2fb9badc9af1384bf50f63b3459fbc)
    </details>


    ## [@voluntas](https://x.com/voluntas)

  10. voluntas revised this gist Apr 23, 2025. 1 changed file with 2 additions and 0 deletions.
    2 changes: 2 additions & 0 deletions mcp_zadankai_2025_04.md
    Original file line number Diff line number Diff line change
    @@ -85,6 +85,8 @@
    - <https://platform.openai.com/docs/guides/embeddings>
    - MCP ロードマップ
    - <https://modelcontextprotocol.io/development/roadmap>
    - [punkpeye/awesome\-mcp\-servers: A collection of MCP servers\.](https://github.com/punkpeye/awesome-mcp-servers)
    - [punkpeye/awesome\-mcp\-clients: A collection of MCP clients\.](https://github.com/punkpeye/awesome-mcp-clients)

    ### RAG

  11. voluntas revised this gist Apr 23, 2025. 1 changed file with 9 additions and 0 deletions.
    9 changes: 9 additions & 0 deletions mcp_zadankai_2025_04.md
    Original file line number Diff line number Diff line change
    @@ -48,6 +48,10 @@

    ### MCP

    - VS Code が対応している
    - プロトコルである
    - MCP クライアントがユーザ側で動き LLM での処理はユーザー側の費用負担になる
    - これが企業が乗っかりやすい理由だと考えてる
    - MCP 2025-03-26 仕様
    - <https://spec.modelcontextprotocol.io/specification/2025-03-26/>
    - <https://spec.modelcontextprotocol.io/specification/2025-03-26/server/tools/>
    @@ -115,3 +119,8 @@
    - <https://sora.shiguredo.app/mcp> みたいなイメージ

    ### 自社製品ドクター MCP

    - 自社ミドルウェアのトラブルシューティング
    - ログを検索して問題を探す
    - API を実行する
    - ウェブフック機能を持たせて通知の仕組みを入れたりしたい
  12. voluntas revised this gist Apr 23, 2025. 1 changed file with 31 additions and 6 deletions.
    37 changes: 31 additions & 6 deletions mcp_zadankai_2025_04.md
    Original file line number Diff line number Diff line change
    @@ -84,9 +84,34 @@

    ### RAG

    - <https://huggingface.co/pfnet/plamo-embedding-1b>
    - <https://github.com/duckdb/duckdb-vss>
    - <https://duckdb.org/docs/stable/extensions/vss.html>
    - [What's New in the Vector Similarity Search Extension? – DuckDB](https://duckdb.org/2024/10/23/whats-new-in-the-vss-extension.html)
    - [Vector Similarity Search in DuckDB – DuckDB](https://duckdb.org/2024/05/03/vector-similarity-search-vss.html)
    - <https://huggingface.co/cl-nagoya/ruri-v3-310m>
    - ベクトル化
    - <https://huggingface.co/pfnet/plamo-embedding-1b>
    - <https://huggingface.co/cl-nagoya/ruri-v3-310m>
    - DuckDB
    - <https://github.com/duckdb/duckdb-vss>
    - <https://duckdb.org/docs/stable/extensions/vss.html>
    - [What's New in the Vector Similarity Search Extension? – DuckDB](https://duckdb.org/2024/10/23/whats-new-in-the-vss-extension.html)
    - [Vector Similarity Search in DuckDB – DuckDB](https://duckdb.org/2024/05/03/vector-similarity-search-vss.html)
    - Meilisearch
    - [Introducing hybrid search: combining full\-text and semantic search for optimal balance](https://www.meilisearch.com/blog/introducing-hybrid-search)
    - <https://github.com/meilisearch/meilisearch/releases/tag/v1.14.0>
    - Composite embedders
    - <https://www.meilisearch.com/pricing>

    ## 時雨堂でやろうとしてること

    - 認証あり
    - HTTP 前提

    ### 自社製品ドキュメント MCP

    - RAG を利用したドキュメント生成
    - ドキュメントに MCP を生やしたい
    - <https://sora-doc.shiguredo.app/mcp>

    ### 自社製品紹介 MCP

    - ウェブサイトに MCP を生やしたい
    - <https://sora.shiguredo.app/mcp> みたいなイメージ

    ### 自社製品ドクター MCP
  13. voluntas revised this gist Apr 23, 2025. 1 changed file with 40 additions and 30 deletions.
    70 changes: 40 additions & 30 deletions mcp_zadankai_2025_04.md
    Original file line number Diff line number Diff line change
    @@ -1,7 +1,7 @@
    # MCP 座談会 (2025-04)

    - 日時: 2025-04-24 (木) 15:00-17:00
    - 18:00 まで延長戦あり
    - 18:00 まで延長戦あり
    - 申込期限: 2025-04-23 (水) 13:00
    - 主催: @voluntas [時雨堂](https://shiguredo.jp)
    - 会場: 時雨堂 [Discord サーバー](https://discord.gg/shiguredo)
    @@ -17,11 +17,11 @@
    ## 参加申し込み

    - 時雨堂 Discord サーバーに参加する
    - https://discord.gg/shiguredo
    - 書き込みには電話番号認証が必要
    - <https://discord.gg/shiguredo>
    - 書き込みには電話番号認証が必要
    - `#event` チャネルの `MCP 座談会 (2025-04)``参加します` と書いて申し込む
    - そうすると `2025-04-24` というロールが付与される
    - `#2025-01-24` というプライベートチャネルに参加できるようになる
    - そうすると `2025-04-24` というロールが付与される
    - `#2025-01-24` というプライベートチャネルに参加できるようになる

    ### 注意事項

    @@ -33,7 +33,7 @@
    ## 配信

    - 時雨堂の WebRTC SFU Sora を利用して @voluntas が画面共有と音声を WebRTC で配信します
    - Chrome / Edge / Safari であれば、問題無く視聴できます
    - Chrome / Edge / Safari であれば、問題無く視聴できます
    - コメントは Discord に書いてください

    ## イベント内容
    @@ -44,39 +44,49 @@

    [![Image from Gyazo](https://i.gyazo.com/8a2fb9badc9af1384bf50f63b3459fbc.png)](https://gyazo.com/8a2fb9badc9af1384bf50f63b3459fbc)

    ## 話者
    ## [@voluntas](https://x.com/voluntas)

    ### [@voluntas](https://x.com/voluntas)
    ### MCP

    - MCP 2025-03-26 仕様
    - https://spec.modelcontextprotocol.io/specification/2025-03-26/
    - https://spec.modelcontextprotocol.io/specification/2025-03-26/server/tools/
    - https://spec.modelcontextprotocol.io/specification/2025-03-26/server/prompts/
    - https://spec.modelcontextprotocol.io/specification/2025-03-26/server/resources/
    - <https://spec.modelcontextprotocol.io/specification/2025-03-26/>
    - <https://spec.modelcontextprotocol.io/specification/2025-03-26/server/tools/>
    - <https://spec.modelcontextprotocol.io/specification/2025-03-26/server/prompts/>
    - <https://spec.modelcontextprotocol.io/specification/2025-03-26/server/resources/>
    - MCP VS Code 対応
    - https://code.visualstudio.com/docs/copilot/chat/mcp-servers
    - https://code.visualstudio.com/updates/v1_99#_model-context-protocol-server-support
    - <https://code.visualstudio.com/docs/copilot/chat/mcp-servers>
    - <https://code.visualstudio.com/updates/v1_99#_model-context-protocol-server-support>
    - MCP Inspector
    https://github.com/modelcontextprotocol/inspector
    <https://github.com/modelcontextprotocol/inspector>
    - MCP Python SDK
    - https://github.com/modelcontextprotocol/python-sdk
    - https://github.com/modelcontextprotocol/python-sdk?tab=readme-ov-file#resources
    - https://github.com/modelcontextprotocol/python-sdk?tab=readme-ov-file#prompts
    - <https://github.com/modelcontextprotocol/python-sdk>
    - <https://github.com/modelcontextprotocol/python-sdk?tab=readme-ov-file#resources>
    - <https://github.com/modelcontextprotocol/python-sdk?tab=readme-ov-file#prompts>
    - modelcontextprotocol/go-sdk
    - https://github.com/orgs/modelcontextprotocol/discussions/224
    - <https://github.com/orgs/modelcontextprotocol/discussions/224>
    - MCP HTTP トランスポート
    - https://spec.modelcontextprotocol.io/specification/2025-03-26/basic/transports/#streamable-http
    - <https://spec.modelcontextprotocol.io/specification/2025-03-26/basic/transports/#streamable-http>
    - SSE はオプションへ
    - MCP 認可
    - https://spec.modelcontextprotocol.io/specification/2025-03-26/basic/authorization/
    - https://tailscale.com/
    - <https://spec.modelcontextprotocol.io/specification/2025-03-26/basic/authorization/>
    - <https://tailscale.com/>
    - MCP クライアント
    - https://claude.ai/download
    - https://code.visualstudio.com/docs/copilot/chat/mcp-servers
    - https://docs.cursor.com/context/model-context-protocol
    - <https://claude.ai/download>
    - <https://code.visualstudio.com/docs/copilot/chat/mcp-servers>
    - <https://docs.cursor.com/context/model-context-protocol>
    - MCP とドキュメント
    - https://x.com/MIITON/status/1908712839352909963
    - https://github.com/Unstructured-IO/unstructured
    - https://www.meilisearch.com/blog/introducing-hybrid-search
    - https://platform.openai.com/docs/guides/embeddings
    - <https://x.com/MIITON/status/1908712839352909963>
    - <https://github.com/Unstructured-IO/unstructured>
    - <https://www.meilisearch.com/blog/introducing-hybrid-search>
    - <https://platform.openai.com/docs/guides/embeddings>
    - MCP ロードマップ
    - https://modelcontextprotocol.io/development/roadmap
    - <https://modelcontextprotocol.io/development/roadmap>

    ### RAG

    - <https://huggingface.co/pfnet/plamo-embedding-1b>
    - <https://github.com/duckdb/duckdb-vss>
    - <https://duckdb.org/docs/stable/extensions/vss.html>
    - [What's New in the Vector Similarity Search Extension? – DuckDB](https://duckdb.org/2024/10/23/whats-new-in-the-vss-extension.html)
    - [Vector Similarity Search in DuckDB – DuckDB](https://duckdb.org/2024/05/03/vector-similarity-search-vss.html)
    - <https://huggingface.co/cl-nagoya/ruri-v3-310m>
  14. voluntas revised this gist Apr 6, 2025. 1 changed file with 20 additions and 17 deletions.
    37 changes: 20 additions & 17 deletions mcp_zadankai_2025_04.md
    Original file line number Diff line number Diff line change
    @@ -46,34 +46,37 @@

    ## 話者

    @voluntas は通信系ミドルウェア開発者なので、
    まったく異なる分野で MCP 使おうとしてる人の話を聞いてみたいです。ハードウェアやデザインなど。

    実際に使っている話を最大 20 分くらいで話してくれる方を募集

    ### [@voluntas](https://x.com/voluntas)

    - MCP 2025-03-26 仕様
    - https://spec.modelcontextprotocol.io/specification/2025-03-26/
    - https://spec.modelcontextprotocol.io/specification/2025-03-26/server/tools/
    - https://spec.modelcontextprotocol.io/specification/2025-03-26/server/prompts/
    - https://spec.modelcontextprotocol.io/specification/2025-03-26/server/resources/
    - MCP VS Code 対応
    - https://code.visualstudio.com/docs/copilot/chat/mcp-servers
    - https://code.visualstudio.com/updates/v1_99#_model-context-protocol-server-support
    - MCP INspector
    - MCP Inspector
    https://github.com/modelcontextprotocol/inspector
    - MCP SDK
    - MCP Python SDK
    - https://github.com/modelcontextprotocol/python-sdk
    - リモート MCP
    - https://github.com/modelcontextprotocol/python-sdk?tab=readme-ov-file#resources
    - https://github.com/modelcontextprotocol/python-sdk?tab=readme-ov-file#prompts
    - modelcontextprotocol/go-sdk
    - https://github.com/orgs/modelcontextprotocol/discussions/224
    - MCP HTTP トランスポート
    - https://spec.modelcontextprotocol.io/specification/2025-03-26/basic/transports/#streamable-http
    - MCP セキュリティ
    - 認証
    - https://spec.modelcontextprotocol.io/specification/2025-03-26/basic/authorization/
    - Tailscale / Ngrok
    - MCP 認可
    - https://spec.modelcontextprotocol.io/specification/2025-03-26/basic/authorization/
    - https://tailscale.com/
    - MCP クライアント
    - https://claude.ai/download
    - https://docs.anthropic.com/ja/docs/agents-and-tools/claude-code/overview
    - ブラウザ MCP クライアントとリモート MCP サーバーの可能性
    - https://code.visualstudio.com/docs/copilot/chat/mcp-servers
    - https://docs.cursor.com/context/model-context-protocol
    - MCP とドキュメント
    - https://github.com/meilisearch/meilisearch-mcp
    - https://github.com/qdrant/mcp-server-qdrant
    - https://x.com/MIITON/status/1908712839352909963
    - https://github.com/Unstructured-IO/unstructured
    - https://www.meilisearch.com/blog/introducing-hybrid-search
    - https://platform.openai.com/docs/guides/embeddings
    - MCP ロードマップ
    - https://modelcontextprotocol.io/development/roadmap
    - https://modelcontextprotocol.io/development/roadmap
  15. voluntas revised this gist Apr 4, 2025. 1 changed file with 22 additions and 10 deletions.
    32 changes: 22 additions & 10 deletions mcp_zadankai_2025_04.md
    Original file line number Diff line number Diff line change
    @@ -46,22 +46,34 @@

    ## 話者

    @voluntas は通信系ミドルウェア開発者なので、まったく異なる分野で MCP 使おうとしてる人の話を聞いてみたいです。ハードウェアやデザインなど。
    @voluntas は通信系ミドルウェア開発者なので、
    まったく異なる分野で MCP 使おうとしてる人の話を聞いてみたいです。ハードウェアやデザインなど。

    - 実際に使っている話を最大 20 分くらいで話してくれる方を募集
    実際に使っている話を最大 20 分くらいで話してくれる方を募集

    ### [@voluntas](https://x.com/voluntas)

    - MCP 2025-03-26 仕様
    - https://spec.modelcontextprotocol.io/specification/2025-03-26/
    - MCP VS Code 対応
    - https://code.visualstudio.com/docs/copilot/chat/mcp-servers
    - https://code.visualstudio.com/updates/v1_99#_model-context-protocol-server-support
    - MCP INspector
    https://github.com/modelcontextprotocol/inspector
    - MCP SDK
    - https://github.com/modelcontextprotocol/python-sdk
    - リモート MCP
    - MCP Python SDK
    - https://spec.modelcontextprotocol.io/specification/2025-03-26/basic/transports/#streamable-http
    - MCP セキュリティ
    - 認証
    - Tailscale / Ngrok
    - MCP Hub
    - https://mcp.so/
    - MCP クライアントはどうなるのか
    - https://spec.modelcontextprotocol.io/specification/2025-03-26/basic/authorization/
    - Tailscale / Ngrok
    - MCP クライアント
    - https://claude.ai/download
    - https://docs.anthropic.com/ja/docs/agents-and-tools/claude-code/overview
    - ブラウザ MCP クライアントとリモート MCP サーバーの可能性
    - MCP とドキュメント
    - Erlang/OTP でリモート MCP
    - API 代理で叩いてくれる系

    - https://github.com/meilisearch/meilisearch-mcp
    - https://github.com/qdrant/mcp-server-qdrant
    - MCP ロードマップ
    - https://modelcontextprotocol.io/development/roadmap
  16. voluntas revised this gist Mar 31, 2025. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion mcp_zadankai_2025_04.md
    Original file line number Diff line number Diff line change
    @@ -19,7 +19,7 @@
    - 時雨堂 Discord サーバーに参加する
    - https://discord.gg/shiguredo
    - 書き込みには電話番号認証が必要
    - `#event` チャネルの `DuckDB 座談会 (2025-04)``参加します` と書いて申し込む
    - `#event` チャネルの `MCP 座談会 (2025-04)``参加します` と書いて申し込む
    - そうすると `2025-04-24` というロールが付与される
    - `#2025-01-24` というプライベートチャネルに参加できるようになる

  17. voluntas revised this gist Mar 31, 2025. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion mcp_zadankai_2025_04.md
    Original file line number Diff line number Diff line change
    @@ -12,7 +12,7 @@
    - MCP 情報交換

    > [!IMPORTANT]
    > [Model Context Protocol specification](https://spec.modelcontextprotocol.io/specification/2025-03-26/) を読んでいる方向けのイベントです
    > [Model Context Protocol specification](https://spec.modelcontextprotocol.io/specification/2025-03-26/) を既に読んでいる人向けのイベントです
    ## 参加申し込み

  18. voluntas revised this gist Mar 31, 2025. 1 changed file with 2 additions and 1 deletion.
    3 changes: 2 additions & 1 deletion mcp_zadankai_2025_04.md
    Original file line number Diff line number Diff line change
    @@ -10,8 +10,9 @@
    ## 目的

    - MCP 情報交換
    - MCP 入門的な内容はやりません、ただ質問にはできるだけ答えます

    > [!IMPORTANT]
    > [Model Context Protocol specification](https://spec.modelcontextprotocol.io/specification/2025-03-26/) を読んでいる方向けのイベントです
    ## 参加申し込み

  19. voluntas revised this gist Mar 31, 2025. 1 changed file with 9 additions and 1 deletion.
    10 changes: 9 additions & 1 deletion mcp_zadankai_2025_04.md
    Original file line number Diff line number Diff line change
    @@ -12,6 +12,7 @@
    - MCP 情報交換
    - MCP 入門的な内容はやりません、ただ質問にはできるだけ答えます


    ## 参加申し込み

    - 時雨堂 Discord サーバーに参加する
    @@ -28,11 +29,17 @@
    - 退席報告不要
    - 迷惑行為は一発で BAN

    ## 配信

    - 時雨堂の WebRTC SFU Sora を利用して @voluntas が画面共有と音声を WebRTC で配信します
    - Chrome / Edge / Safari であれば、問題無く視聴できます
    - コメントは Discord に書いてください

    ## イベント内容

    だらだらと参加者のコメントを読みながら雑談。

    ## 他の座談会の様子
    ### 他の座談会の様子

    [![Image from Gyazo](https://i.gyazo.com/8a2fb9badc9af1384bf50f63b3459fbc.png)](https://gyazo.com/8a2fb9badc9af1384bf50f63b3459fbc)

    @@ -56,3 +63,4 @@
    - MCP とドキュメント
    - Erlang/OTP でリモート MCP
    - API 代理で叩いてくれる系

  20. voluntas revised this gist Mar 31, 2025. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion mcp_zadankai_2025_04.md
    Original file line number Diff line number Diff line change
    @@ -17,7 +17,7 @@
    - 時雨堂 Discord サーバーに参加する
    - https://discord.gg/shiguredo
    - 書き込みには電話番号認証が必要
    - `#event` チャネルの `DuckDB 座談会 2025-04``参加します` と書いて申し込む
    - `#event` チャネルの `DuckDB 座談会 (2025-04)``参加します` と書いて申し込む
    - そうすると `2025-04-24` というロールが付与される
    - `#2025-01-24` というプライベートチャネルに参加できるようになる

  21. voluntas revised this gist Mar 31, 2025. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion mcp_zadankai_2025_04.md
    Original file line number Diff line number Diff line change
    @@ -38,7 +38,7 @@

    ## 話者

    @voluntas はミドルウェア開発者なので、まったく異なる分野で MCP 使おうとしてる人の話を聞いてみたいです。ハードウェアやデザインなど。
    @voluntas は通信系ミドルウェア開発者なので、まったく異なる分野で MCP 使おうとしてる人の話を聞いてみたいです。ハードウェアやデザインなど。

    - 実際に使っている話を最大 20 分くらいで話してくれる方を募集

  22. voluntas revised this gist Mar 30, 2025. 1 changed file with 9 additions and 2 deletions.
    11 changes: 9 additions & 2 deletions mcp_zadankai_2025_04.md
    Original file line number Diff line number Diff line change
    @@ -38,14 +38,21 @@

    ## 話者

    @voluntas はミドルウェア開発者なので、まったく異なる分野で MCP 使おうとしてる人の話を聞いてみたいです。ハードウェアやデザインなど。

    - 実際に使っている話を最大 20 分くらいで話してくれる方を募集

    ### [@voluntas](https://x.com/voluntas)

    - MCP 2025-03-26 仕様
    - リモート MCP
    - MCP Python SDK
    - MCP セキュリティ周り
    - MCP ハブはどこに落ち着くのか
    - MCP セキュリティ
    - 認証
    - Tailscale / Ngrok
    - MCP Hub
    - https://mcp.so/
    - MCP クライアントはどうなるのか
    - MCP とドキュメント
    - Erlang/OTP でリモート MCP
    - API 代理で叩いてくれる系
  23. voluntas created this gist Mar 30, 2025.
    51 changes: 51 additions & 0 deletions mcp_zadankai_2025_04.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,51 @@
    # MCP 座談会 (2025-04)

    - 日時: 2025-04-24 (木) 15:00-17:00
    - 18:00 まで延長戦あり
    - 申込期限: 2025-04-23 (水) 13:00
    - 主催: @voluntas [時雨堂](https://shiguredo.jp)
    - 会場: 時雨堂 [Discord サーバー](https://discord.gg/shiguredo)
    - 配信: 時雨堂 [Sora Labo](https://sora-labo.shiguredo.app)

    ## 目的

    - MCP 情報交換
    - MCP 入門的な内容はやりません、ただ質問にはできるだけ答えます

    ## 参加申し込み

    - 時雨堂 Discord サーバーに参加する
    - https://discord.gg/shiguredo
    - 書き込みには電話番号認証が必要
    - `#event` チャネルの `DuckDB 座談会 2025-04``参加します` と書いて申し込む
    - そうすると `2025-04-24` というロールが付与される
    - `#2025-01-24` というプライベートチャネルに参加できるようになる

    ### 注意事項

    - Discord のコメント大歓迎
    - キャンセル報告不要
    - 退席報告不要
    - 迷惑行為は一発で BAN

    ## イベント内容

    だらだらと参加者のコメントを読みながら雑談。

    ## 他の座談会の様子

    [![Image from Gyazo](https://i.gyazo.com/8a2fb9badc9af1384bf50f63b3459fbc.png)](https://gyazo.com/8a2fb9badc9af1384bf50f63b3459fbc)

    ## 話者

    - 実際に使っている話を最大 20 分くらいで話してくれる方を募集

    ### [@voluntas](https://x.com/voluntas)

    - MCP 2025-03-26 仕様
    - リモート MCP
    - MCP Python SDK
    - MCP セキュリティ周り
    - MCP ハブはどこに落ち着くのか
    - MCP クライアントはどうなるのか
    - Erlang/OTP でリモート MCP