Skip to main content
Glama

Gong MCP Server

by kenazk

Гонг MCP Сервер

Сервер Model Context Protocol (MCP), который обеспечивает доступ к API Gong для получения записей вызовов и расшифровок. Этот сервер позволяет Клоду взаимодействовать с данными Gong через стандартизированный интерфейс.

Функции

  • Список вызовов Gong с возможностью фильтрации по диапазону дат
  • Получайте подробные расшифровки определенных звонков
  • Безопасная аутентификация с использованием учетных данных API Gong
  • Стандартизированный интерфейс MCP для легкой интеграции с Claude

Предпосылки

  • Node.js 18 или выше
  • Docker (опционально, для контейнерного развертывания)
  • Учетные данные API Gong (ключ доступа и секрет)

Установка

Местное развитие

  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. Замените учетные данные заполнителя на фактические учетные данные Gong API из вашего файла .env

Доступные инструменты

Список звонков

Извлекает список вызовов Гонга с дополнительной фильтрацией по диапазону дат.

{ 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)" } } } }

Получить транскрипты

Извлекает подробные расшифровки для указанных идентификаторов вызовов.

{ 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.

Сервер Model Context Protocol, который позволяет Клоду получать доступ к API Gong для извлечения записей и расшифровок вызовов через стандартизированный интерфейс.

  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