gong_list_users
Pack: gong · Endpoint: https://gateway.pipeworx.io/gong/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/gong_list_users for the schema, then POST the same URL with its arguments for the data.
List all users in your workspace. Returns user names, IDs, email addresses, roles, and activity status.
Example call
Arguments
{}
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_users","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('gong_list_users', {});
Response shape
Full JSON Schema
{
"type": "object",
"description": "Response from Gong API listing workspace users with names, IDs, emails, and roles"
}
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.