Wraps Gong's v2 API via OAuth so you can pull conversation intelligence data into Claude. Right now it exposes a single tool to list workspace users with their roles, emails, and activity status. Part of the Pipeworx gateway ecosystem, which means you can either use this standalone or tap into their broader collection of 673+ data sources. The ask_pipeworx interface lets you query in natural language instead of calling tools directly. Useful if you're building workflows that need to correlate Gong call data with team structure, or if you want conversational access to your sales intelligence platform without switching contexts.
Gong MCP — wraps the Gong API v2 (OAuth)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
gong_list_users | List all users in your workspace. Returns user names, IDs, email addresses, roles, and activity status. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"gong": {
"url": "https://gateway.pipeworx.io/gong/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Gong data" })
The gateway picks the right tool and fills the arguments automatically.
MIT