Gong MCP Server for Claude and Cursor

Hosted Gong MCP for Claude, Cursor, and ChatGPT. Search call transcripts, query deals and trackers, and trigger on new calls.

Gong logoGong
BasicOauth2

Gong is a platform for video meetings, call recording, and team collaboration. It helps teams capture conversations, analyze calls, and turn insights into action.

57 Tools

Try Gong now

Type what you want done — sign in and watch it run live in the Tool Router playground.

TOOL ROUTER PLAYGROUND
Gong
Try asking
TOOLS

Supported Tools

Every Gong action and event your agent gets out of the box.

Add call media

Adds a call media, recorded by a telephony system (PBX) or other media recording facility.

Add new call v2 calls

When using this endpoint, either provide a downloadMediaUrl or use the returned callId in a follow-up request to /v2/calls/{id}/media to upload the media file.

Aggregate activity by period via api

Lists the aggregated activity of multiple users within the Gong system for each time period within the defined date range.

Aggregate user activity statistics

Lists the activity of multiple users within the Gong system during a defined period.

Assign prospects to flow

Use this endpoint to assign a number of prospects to a flow.

Retrieve activity scorecards report

Retrieve all the answers for the scorecards that were reviewed during a specified date range, for calls that took place during a specified date range, for specific scorecards or for specific reviewed users.

Create a new gong meeting v2 meetings

When accessed through a Bearer token authorization method, this endpoint requires the scope 'api:meetings:user:create'.

Create permission profile v2 permission profile

Create a permission profile in a given workspace.

Data privacy for phone number

Shows the elements in the Gong system that reference the given phone number.

Delete a generic CRM integration

Deletes an existing generic CRM integration from the Gong platform.

Delete Meeting

Deletes a Gong meeting created via the Meetings API (Beta).

Delete users from call access list

Remove individual user access from calls.

Erase data for email address

Erase all data associated with an email address from Gong (GDPR compliance).

Erase data for phone number

Given a phone number, this endpoint deletes from the Gong system any leads or contacts with a matching phone number or mobile phone number.

Fetch all permission profiles

Returns a list of all permission profiles.

Get Call By ID

Tool to fetch specific call metadata by call ID.

Get Call Transcript

Tool to retrieve call transcripts from Gong.

Get Crm Integration Details

Retrieves details of generic CRM integrations registered with Gong.

Get crm objects v2 crm entities

Retrieves specific CRM objects by their IDs from Gong's CRM integration.

Get Flow Prospects

Tool to retrieve Gong Engage flows assigned to specified prospects.

Get Interaction Statistics

Tool to retrieve interaction trend statistics for users based on calls with Whisper enabled.

Get permission profile

Returns a permission profile.

Get CRM Request Status

The GetCRMRequestStatus endpoint retrieves the current status of CRM integration requests in the Gong platform.

Get User By ID

Tool to retrieve individual user details by user ID.

Get User Settings History

Tool to retrieve historical changes to a user's settings.

List all coaching metrics v2 coaching

List all of the coaching metrics of a manager.

List all company workspaces v2 workspaces

Returns a list of all workspaces including their details.

List all users v2 users

List all of the company's users.

List Call Outcomes

Tool to retrieve all available call outcomes defined in Gong.

List Flow Folders

Tool to list all Gong Engage flow folders with visibility types.

List Folder Calls

Given a folder id, this endpoint retrieves a list of calls in it.

List gong engage flows v2 flows

Engage flows have the following visibility types: * Company: visible to everyone in the company, can only be edited by users with edit permissions.

List schema fields v2 crm entity schema

Retrieves schema fields for a specific CRM object type within a Generic CRM integration.

List Scorecards

Tool to retrieve all scorecards within the Gong system.

List Tasks

Tool to retrieve Engage tasks assigned to a specific user with filtering options.

List users by filter v2 users extensive

List multiple Users.

Get user call access

Retrieves a list of users who have been granted individual access to specific calls through the API.

Post a digital interaction v2 digital interaction

When accessed through a Bearer token authorization method, this endpoint requires the scope 'api:digital-interactions:write'.

Post day by day activity stats

Retrieve the daily activity of multiple users within the Gong system for a range of dates.

Register Crm Integration

Updates an existing CRM integration in the Gong platform.

Report Content Share Event

Tool to push content share engagement events to Gong's activity timeline.

Report Content View Event

Tool to log content view engagement events to Gong's activity timeline.

Report Custom Engagement Event

Report custom engagement events to Gong's activity timeline.

Retrieve call data by date range v2 calls

List calls that took place during a specified date range.

Retrieve data privacy info for email address

Retrieves data privacy information for a third-party email address.

Retrieve filtered call details

Lists detailed call data for calls that took place during a specified date range, have specified call IDs or hosted by specified users.

Retrieve library folders v2 library folders

Use this endpoint to retrieve a list of public library folders.

Retrieve logs data by type and time range v2 logs

List log entries that took place during a specified time range.

Retrieve manual crm call associations

Returns a list of all calls that were manually associated or re-associated with CRM account and deal/opportunity since a given time.

Retrieve tracker details v2 settings trackers

Retrieves details of all keyword trackers in the system or in a given workspace.

Retrieve users from permission profile

Returns a list of all users whose access is controlled by the given permission profile.

Set User Call Access

Give individual users access to calls.

Unassign Flows By CRM ID

Tool to unassign flows from prospects by their CRM Prospect ID.

Update a gong meeting v2 meetings meetingid

When accessed through a Bearer token authorization method, this endpoint requires the scope 'api:meetings:user:update'.

Update permission profile v2 permission profile

Update a permission profile.

Upload crm objects v2 crm entities

Uploads CRM entity data to Gong via LDJSON file.

Validate Meeting Integration

Validates Gong meeting integration status for one or more users by their email addresses.

SETUP GUIDE

Connect Gong MCP Tool with your Agent

1

Install Composio

typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
Install the Composio SDK and Claude Agent SDK
2

Create Tool Router Session

typescript
import { Composio } from '@composio/core';

const composio = new Composio({ apiKey: 'your-api-key' });

console.log("Creating Tool Router session...");
const { mcp } = await composio.create('your-user-id');
console.log(`Tool Router session created: ${mcp.url}`);
Initialize the Composio client and create a Tool Router session
3

Connect to AI Agent

typescript
import { openai } from '@ai-sdk/openai';
import { experimental_createMCPClient as createMCPClient } from '@ai-sdk/mcp';
import { generateText, stepCountIs } from 'ai';

const client = await createMCPClient({
  transport: {
    type: 'http',
    url: mcp.url,
    headers: { 'x-api-key': 'your-composio-api-key' }
  }
});

const tools = await client.tools();

const { text } = await generateText({
  model: openai('gpt-4o'),
  tools,
  messages: [{ role: 'user', content: 'Create a new Gong meeting with my sales team on Friday at 2pm' }],
  stopWhen: stepCountIs( 5 )
});

console.log(`Agent: ${text}`);
Use the MCP server with your AI agent
SETUP GUIDE

Connect Gong API Tool with your Agent

1

Install Composio

typescript
npm install @composio/openai
Install the Composio SDK
2

Initialize Composio and Create Tool Router Session

typescript
import OpenAI from 'openai';
import { Composio } from '@composio/core';
import { OpenAIResponsesProvider } from '@composio/openai';

const composio = new Composio({
  provider: new OpenAIResponsesProvider(),
});
const openai = new OpenAI({});
const session = await composio.create('your-user-id');
Import and initialize Composio client, then create a Tool Router session
3

Execute Gong Tools via Tool Router with Your Agent

typescript
const tools = session.tools;
const response = await openai.responses.create({
  model: 'gpt-4.1',
  tools: tools,
  input: [{
    role: 'user',
    content: 'List all meetings scheduled for today in Gong'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute Gong actions with your Agent

Why Use Composio?

AI Native Gong Integration

  • Supports both Gong MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable tool execution
  • Rich coverage for reading, writing, and querying your Gong data

Managed Auth

  • Built-in OAuth handling with automatic token refresh and rotation
  • Central place to manage, scope, and revoke Gong access
  • Per user and per environment credentials instead of hard-coded keys

Agent Optimized Design

  • Tools are tuned using real error and success rates to improve reliability over time
  • Comprehensive execution logs so you always know what ran, when, and on whose behalf

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access Gong
  • Scoped, least privilege access to Gong resources
  • Full audit trail of agent actions to support review and compliance
FAQ

Frequently asked questions

Yes, Gong requires you to configure your own Basic Auth credentials. Once set up, Composio handles secure credential storage and authentication for you.

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Start with Gong.It takes 30 seconds.

Managed auth, hosted MCP servers, and every Gong tool your agent needs.Free to start.

Start building