Skip to main content
Glama

Gong MCP Server

by kenazk

Gong MCP 服务器

一个模型上下文协议 (MCP) 服务器,提供对 Gong API 的访问,用于检索通话录音和文字记录。该服务器允许 Claude 通过标准化接口与 Gong 数据进行交互。

特征

  • 列出 Gong 呼叫,并可选择日期范围过滤
  • 检索特定通话的详细记录
  • 使用 Gong 的 API 凭证进行安全身份验证
  • 标准化 MCP 接口,可轻松与 Claude 集成

先决条件

  • Node.js 18 或更高版本
  • Docker(可选,用于容器化部署)
  • Gong API 凭证(访问密钥和秘密)

安装

本地开发

  1. 克隆存储库
  2. 安装依赖项:
    npm install
  3. 构建项目:
    npm run build

Docker

构建容器:

docker build -t gong-mcp .

配置 Claude

  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 许可证 - 详情请参阅许可证文件

贡献

  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. Docker
      2. 配置 Claude
        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