Gong MCP Server

Simple Gong MCP server

Local serverstdioTypeScript

What is the Gong MCP server?

Gong MCP server is a locally run integration for AI assistants that speak the Model Context Protocol. Simple Gong MCP server.

What you get

A Model Context Protocol (MCP) server that provides access to Gong's API for retrieving call recordings and transcripts. This server allows Claude to interact with Gong data through a standardized interface.

  • List Gong calls with optional date range filtering
  • Retrieve detailed transcripts for specific calls
  • Secure authentication using Gong's API credentials
  • Standardized MCP interface for easy integration with Claude

Configuration and credentials

You will need 2 environment variables: GONG_ACCESS_KEY, GONG_ACCESS_SECRET. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  • Node.js 18 or higher - Docker (optional, for containerized deployment) - Gong API credentials (Access Key and Secret)

Setting it up

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client.

Choosing this one

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. It is maintained by kenazk; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the gong mcp server does with a few real requests.

Configuration

  • Node.js 18 or higher - Docker (optional, for containerized deployment) - Gong API credentials (Access Key and Secret)
VariableDescriptionRequired
GONG_ACCESS_KEYCredential the server authenticates with.Yes
GONG_ACCESS_SECRETCredential the server authenticates with.Yes

Frequently asked questions

You need Node.js 18 or higher for local development, and Docker (optional) for containerized deployment. You also need Gong API credentials (Access Key and Secret).