Gong
live DataGong MCP — wraps the Gong API v2 (OAuth)
Tools
gong_list_calls List recorded calls from Gong. Optionally filter by date range. Supports cursor-based pagination.
No parameters required.
Try it
gong_get_call Get details for a specific Gong call by its ID, including participants, duration, and metadata.
No parameters required.
Try it
gong_get_transcript Get the transcript for a specific Gong call. Returns the full conversation transcript.
No parameters required.
Try it
gong_list_users List all users in the Gong workspace.
No parameters required.
Try it
gong_search_calls Search Gong calls by keyword. Returns calls that match the search text.
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/gong/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/gong/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"gong_list_calls","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("gong_list_calls", {}); // Or ask in plain English:
const answer = await px.ask("gong mcp — wraps the gong api v2 (oauth)");