gong_list_calls
Pack: gong · Endpoint: https://gateway.pipeworx.io/gong/mcp
List recorded calls from your workspace with optional date filtering. Returns call IDs, dates, participants, duration, and engagement metrics. Supports pagination for large result sets.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
fromDateTime | string | no | Start of date range (ISO 8601, e.g. “2024-01-01T00:00:00Z”) |
toDateTime | string | no | End of date range (ISO 8601) |
cursor | string | no | Pagination cursor from a previous response |
Example call
Arguments
{
"fromDateTime": "2024-01-01T00:00:00Z",
"toDateTime": "2024-01-31T23:59:59Z"
}
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_list_calls","arguments":{"fromDateTime":"2024-01-01T00:00:00Z","toDateTime":"2024-01-31T23:59:59Z"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('gong_list_calls', {
"fromDateTime": "2024-01-01T00:00:00Z",
"toDateTime": "2024-01-31T23:59:59Z"
});
More examples
{
"fromDateTime": "2024-12-01T00:00:00Z",
"cursor": "eyJvZmZzZXQiOiAxMDB9"
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "Response from Gong API listing calls with optional pagination"
}
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.