gong_get_transcript
Pack: gong · Endpoint: https://gateway.pipeworx.io/gong/mcp
Retrieve the full conversation transcript for a call with speaker names, timestamps, and dialogue. Use after gong_get_call to analyze specific conversations.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
callId | string | yes | The Gong call ID |
Example call
Arguments
{
"callId": "8145046661234567890"
}
curl
curl -X POST https://gateway.pipeworx.io/gong/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"gong_get_transcript","arguments":{"callId":"8145046661234567890"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('gong_get_transcript', {
"callId": "8145046661234567890"
});
Response shape
Full JSON Schema
{
"type": "object",
"description": "Response from Gong API with call transcript containing speaker dialogue and timestamps"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"gong": {
"url": "https://gateway.pipeworx.io/gong/mcp"
}
}
}
See Getting Started for client-specific install steps.