Gong-MCP

Gong-MCP

Provides tools to access Gong call data, including listing calls, retrieving details and transcripts, searching across transcripts, and listing users.

Category
Visit Server

README

Gong MCP

An MCP that exposes Gong call data to Claude Desktop. Part of the PM Signal Intelligence system.

What it does

Exposes five tools to Claude:

  1. list_calls — List calls by date range (auto-paginates across Gong's cursor). Returns call IDs, titles, dates, durations.
  2. get_call_details — Get participants with names, titles, emails, and internal/external classification, plus topics and trackers.
  3. get_transcripts — Get full transcripts segmented by speaker with timestamps. Match speakerId against participants from get_call_details.
  4. search_calls — Search for keywords across transcripts in a date range. Returns matching segments with speaker and timestamp context. Optional maxCalls (default 50, max 200) bounds how many calls are scanned.
  5. get_users — List Gong users (id, name, email, title). Use to map speaker IDs to people.

Prerequisites

  • Node.js 18+
  • A Gong API key (access key + secret key). Get this from your Gong admin: Gong > Settings > Technical > API.

Setup

1. Install dependencies

npm install

2. Build

npm run build

3. Test locally (optional)

GONG_ACCESS_KEY=your-access-key GONG_SECRET_KEY=your-secret-key npm start

The server communicates over stdio (stdin/stdout), so you won't see output in the terminal. It's designed to be spawned by Claude Desktop.

4. Add to Claude Desktop

Open Claude Desktop > Settings > Developer > App Config File.

Add the following to the mcpServers section (create the section if it doesn't exist):

{
  "mcpServers": {
    "gong": {
      "command": "node",
      "args": ["/absolute/path/to/gong-mcp-server/build/index.js"],
      "env": {
        "GONG_ACCESS_KEY": "your-access-key",
        "GONG_SECRET_KEY": "your-secret-key"
      }
    }
  }
}

Replace /absolute/path/to/gong-mcp-server with the actual path on your machine.

5. Restart Claude Desktop

After saving the config, restart Claude Desktop. The Gong connector should appear in Settings > Connectors.

6. Set permissions

In Settings > Connectors > gong, set tool permissions:

  • list_calls: Allow
  • get_call_details: Allow
  • get_transcripts: Allow
  • search_calls: Allow
  • get_users: Allow

Usage in Claude

Once connected, Claude can use the Gong tools directly:

"List all Gong calls from last week"
→ Claude calls list_calls with the date range

"Show me the transcript for call 1234567890"
→ Claude calls get_transcripts with the call ID

"Search for mentions of 'city manager' in Gong calls this month"
→ Claude calls search_calls with the query and date range

"Who was on the call with City of Durham on March 15?"
→ Claude calls get_call_details with the call ID

API rate limits

Gong's API has rate limits. The server retries 429 responses up to 3 times with exponential backoff, honoring Retry-After when present. If you still see rate-limit errors during large backfills, reduce maxCalls on search_calls or narrow the date range.

Gong API reference

The server uses these Gong v2 endpoints:

  • GET /v2/calls — list calls by date range (cursor-paginated)
  • POST /v2/calls/extensive — get detailed call data with participants
  • POST /v2/calls/transcript — get call transcripts
  • GET /v2/users — list users (cursor-paginated)

Full API documentation: https://gong.app.gong.io/settings/api/documentation

Troubleshooting

Server not appearing in Claude Desktop connectors:

  • Check that the path in the config is absolute and correct.
  • Verify that node is accessible from the system PATH.
  • Restart Claude Desktop after config changes.

Authentication errors:

  • Verify GONG_ACCESS_KEY and GONG_SECRET_KEY are correct.
  • Gong API keys use Basic auth (access_key:secret_key). The server handles encoding automatically.

Empty results:

  • Check the date range format (ISO 8601 with timezone).
  • Verify that calls exist in the specified range in Gong's UI.
  • Some Gong plans restrict API access. Confirm your plan includes API access.

Rate limit errors:

  • Reduce batch sizes. The search_calls tool has a maxCalls parameter (default 50).
  • Narrow the date range so fewer calls are paginated.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured