MCP
sales

Gong

Search and read Gong call recordings, transcripts, and AI summaries.

Requires Growth plan or above.

Connect Gong

Generate API credentials in Gong at Company Settings → API, then paste the Access Key and Access Key Secret on the Gong card at /dashboard/connections.

Example

Pull the AI summary of a specific call by ID.

app/api/call-summary/route.ts
export async function GET(req: Request) {
const callId = new URL(req.url).searchParams.get('callId')!
const res = await fetch('https://leash.build/api/integrations/gong/get_call_summary', {
method: 'POST',
headers: {
'x-api-key': process.env.LEASH_API_KEY!,
'content-type': 'application/json',
},
body: JSON.stringify({ callId }),
})
const { data } = await res.json()
// data =>
// {
// callId: '7234581234567890',
// title: 'Acme Corp — Discovery',
// started: '2026-05-09T18:00:00Z',
// summary: 'Acme is evaluating three vendors; current pain is...',
// keyPoints: [
// 'Budget approved for Q3 rollout',
// 'Decision maker: VP Eng (CC\'d on email)',
// '...'
// ],
// nextSteps: ['Send pricing follow-up', 'Schedule technical demo']
// }
return Response.json(data)
}

Available tools

  • list_calls — recent calls in the workspace.
  • search_calls — filter by date, participants, trackers.
  • get_call — call metadata and participants.
  • get_call_summary — Gong's AI-generated summary.
  • get_call_transcript — full transcript with speaker labels.
  • list_library_folders / get_library_folder_calls — library navigation.
  • list_workspaces — workspaces visible to the API key.
  • list_users / search_users / get_user — Gong user directory.
  • get_trackers — configured keyword/phrase trackers.

Common gotchas

  • Transcripts only exist for processed calls. Calls from the last ~15 minutes may return 404; retry after the recording finishes.
  • search_calls returns at most 100 calls per page. Use the cursor field for pagination beyond that.
  • Gong rate limits at 3 req/sec per company. Burst-then-pause patterns hit 429s fast; serialize sensitive operations.

See the Gong Public API reference for the underlying provider docs.

Other languages: see SDK overview.