Skip to main content
Glama

Quip MCP Server

by AvinashBole

Quip MCP サーバー

Quip ドキュメント操作用のモデル コンテキスト プロトコル (MCP) サーバー。これにより、Claude などの AI アシスタントから Quip ドキュメントを直接操作できるようになります。

特徴

  • ドキュメントの読み取り: ID で Quip ドキュメントのコンテンツを取得して表示します
  • コンテンツの追加: 既存のドキュメントの末尾にコンテンツを追加します
  • コンテンツの先頭に追加: ドキュメントの先頭にコンテンツを追加します
  • コンテンツの置換: ドキュメントのコンテンツを更新します
  • ドキュメントの作成: 新しいドキュメントの作成をサポートする予定です (現在は Web インターフェースにリダイレクトされます)

仕組み

このMCPサーバーは、ClaudeとQuipのドキュメント間のブリッジとして機能します。その仕組みは以下のとおりです。

  1. MCPプロトコルを介してクロードからのリクエストを受信する
  2. 適切なパラメータを使用してPythonスクリプト( quip_edit_fixed.py )を実行する
  3. 結果をクロードに返す

前提条件

  • Node.js v18以上
  • タイプスクリプト
  • quipライブラリがインストールされたPython
  • 有効なQuipアクセストークン

インストール

  1. このリポジトリをクローンします:
    git clone https://github.com/AvinashBole/quip-mcp-server.git cd quip-mcp-server
  2. 依存関係をインストールします:
    npm install
  3. プロジェクトをビルドします。
    npm run build
  4. MCP 設定を構成します。
    { "mcpServers": { "quip": { "command": "node", "args": ["path/to/quip-server/build/index.js"], "env": { "QUIP_ACCESS_TOKEN": "your-quip-access-token", "QUIP_BASE_URL": "https://platform.quip.com" }, "disabled": false, "autoApprove": [] } } }

使用法

接続すると、Claude は次の MCP ツールを使用できるようになります。

  • quip_read_document : スレッドIDでQuipドキュメントを読む
  • quip_append_content : ドキュメントにコンテンツを追加する
  • quip_prepend_content : ドキュメントの先頭にコンテンツを追加する
  • quip_replace_content : ドキュメントのコンテンツを置き換える
  • quip_create_document : 新しいドキュメントを作成する (現在はサポートされていません)

Claude での使用例:

<use_mcp_tool> <server_name>quip</server_name> <tool_name>quip_read_document</tool_name> <arguments> { "threadId": "YOUR_DOCUMENT_ID" } </arguments> </use_mcp_tool>

Pythonスクリプト統合

サーバーは、 PYTHON_SCRIPT_PATH定数で指定されたパスにquip_edit_fixed.pyという Python スクリプトが存在することを期待しています。このスクリプトは以下の操作をサポートする必要があります。

  • read : 文書の内容を読む
  • append : 文書の末尾にコンテンツを追加する
  • prepend : 文書の先頭にコンテンツを追加する
  • replace : ドキュメントの内容を更新する

ライセンス

ISCライセンス

著者

アビナッシュ・ボール

-
security - not tested
A
license - permissive license
-
quality - not tested

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

Claude のような AI アシスタントが一連の専用ツールを通じて Quip ドキュメントを直接読み取り、編集できるようにするモデル コンテキスト プロトコル サーバー。

  1. 特徴
    1. 仕組み
      1. 前提条件
        1. インストール
          1. 使用法
            1. Pythonスクリプト統合
              1. ライセンス
                1. 著者

                  Related MCP Servers

                  • A
                    security
                    F
                    license
                    A
                    quality
                    A starter template for building Model Context Protocol servers that can be integrated with Cursor or Claude Desktop, allowing developers to create custom tools and extensions for AI assistants.
                    Last updated -
                    1
                    6
                    9
                    TypeScript
                    • Apple
                  • A
                    security
                    A
                    license
                    A
                    quality
                    A Model Context Protocol server that enables AI assistants like Claude to interact with Outline document services, supporting document searching, reading, creation, editing, and comment management.
                    Last updated -
                    25
                    19
                    Python
                    MIT License
                  • -
                    security
                    F
                    license
                    -
                    quality
                    A Model Context Protocol server that bridges AI assistants like Claude with Wordware's specialized agent capabilities, allowing dynamic loading and access to any Wordware flow through a standardized interface.
                    Last updated -
                    Python
                  • A
                    security
                    A
                    license
                    A
                    quality
                    A Model Context Protocol server that enables AI assistants to interact with Confluence content, supporting operations like retrieving, searching, creating, and updating pages and spaces.
                    Last updated -
                    9
                    3
                    TypeScript
                    MIT License

                  View all related MCP servers

                  MCP directory API

                  We provide all the information about MCP servers via our MCP API.

                  curl -X GET 'https://glama.ai/api/mcp/v1/servers/AvinashBole/quip-mcp-server'

                  If you have feedback or need assistance with the MCP directory API, please join our Discord server