Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

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

README.md

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.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Search servers.