gong_get_call

Pack: gong · Endpoint: https://gateway.pipeworx.io/gong/mcp

Get full details for a specific call by ID. Returns participants, duration, call metadata, engagement metrics, and key moments.

Parameters

NameTypeRequiredDescription
callIdstringyesThe 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_call","arguments":{"callId":"8145046661234567890"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('gong_get_call', {
  "callId": "8145046661234567890"
});

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Response from Gong API with full call details including participants and metrics"
}

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.

Regenerated from source · build May 9, 2026