Skip to main content
Glama

Gong MCP Server

by kenazk

Gong MCP サーバー

GongのAPIにアクセスして通話録音とトランスクリプトを取得できるモデルコンテキストプロトコル(MCP)サーバー。このサーバーにより、Claudeは標準化されたインターフェースを介してGongデータを操作できます。

特徴

  • オプションの日付範囲フィルタリングを使用して Gong 通話を一覧表示します
  • 特定の通話の詳細な記録を取得する
  • Gong の API 認証情報を使用した安全な認証
  • Claudeとの統合を容易にする標準化されたMCPインターフェース

前提条件

  • Node.js 18以上
  • Docker(オプション、コンテナ化されたデプロイメント用)
  • Gong API 資格情報 (アクセスキーとシークレット)

インストール

地域開発

  1. リポジトリをクローンする
  2. 依存関係をインストールします:
    npm install
  3. プロジェクトをビルドします。
    npm run build

ドッカー

コンテナをビルドします。

docker build -t gong-mcp .

クロードの設定

  1. Claudeデスクトップの設定を開く
  2. MCPサーバーセクションに移動します
  3. 次の構成で新しいサーバーを追加します。
{ "command": "docker", "args": [ "run", "-it", "--rm", "gong-mcp" ], "env": { "GONG_ACCESS_KEY": "your_access_key_here", "GONG_ACCESS_SECRET": "your_access_secret_here" } }
  1. プレースホルダーの資格情報を、 .envファイルからの実際の Gong API 資格情報に置き換えます。

利用可能なツール

通話リスト

オプションの日付範囲フィルタリングを使用して、Gong コールのリストを取得します。

{ name: "list_calls", description: "List Gong calls with optional date range filtering. Returns call details including ID, title, start/end times, participants, and duration.", inputSchema: { type: "object", properties: { fromDateTime: { type: "string", description: "Start date/time in ISO format (e.g. 2024-03-01T00:00:00Z)" }, toDateTime: { type: "string", description: "End date/time in ISO format (e.g. 2024-03-31T23:59:59Z)" } } } }

トランスクリプトを取得する

指定された通話 ID の詳細なトランスクリプトを取得します。

{ name: "retrieve_transcripts", description: "Retrieve transcripts for specified call IDs. Returns detailed transcripts including speaker IDs, topics, and timestamped sentences.", inputSchema: { type: "object", properties: { callIds: { type: "array", items: { type: "string" }, description: "Array of Gong call IDs to retrieve transcripts for" } }, required: ["callIds"] } }

ライセンス

MITライセンス - 詳細はLICENSEファイルを参照

貢献

  1. リポジトリをフォークする
  2. 機能ブランチを作成します( git checkout -b feature/amazing-feature
  3. 変更をコミットします ( git commit -m 'Add some amazing feature' )
  4. ブランチにプッシュする ( git push origin feature/amazing-feature )
  5. プルリクエストを開く
Install Server
A
security – no known vulnerabilities
A
license - permissive license
A
quality - confirmed to work

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 が Gong の API にアクセスし、標準化されたインターフェースを通じて通話録音とトランスクリプトを取得できるようにするモデル コンテキスト プロトコル サーバー。

  1. 特徴
    1. 前提条件
      1. インストール
        1. 地域開発
        2. ドッカー
      2. クロードの設定
        1. 利用可能なツール
          1. 通話リスト
          2. トランスクリプトを取得する
        2. ライセンス
          1. 貢献

            Related MCP Servers

            • -
              security
              F
              license
              -
              quality
              A Model Context Protocol server that allows Claude to make API requests on your behalf, providing tools for testing various APIs including HTTP requests and OpenAI integrations without sharing your API keys in the chat.
              Last updated -
              Python
              • Linux
              • Apple
            • A
              security
              A
              license
              A
              quality
              A Model Context Protocol server that enables AI assistants like Claude to interact with Google Cloud Platform environments through natural language, allowing users to query and manage GCP resources during conversations.
              Last updated -
              9
              102
              62
              TypeScript
              MIT License
            • A
              security
              A
              license
              A
              quality
              A Model Context Protocol server that provides DuckDuckGo search functionality for Claude, enabling web search capabilities through a clean tool interface with rate limiting support.
              Last updated -
              1
              60
              15
              TypeScript
              MIT License
              • Apple
            • -
              security
              F
              license
              -
              quality
              A Model Context Protocol server that enables Claude to perform Google Custom Search operations by connecting to Google's search API.
              Last updated -
              Python
              • Linux

            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/kenazk/gong-mcp'

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