gong_search_calls

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

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/gong_search_calls for the schema, then POST the same URL with its arguments for the data.

Search calls by keyword or phrase (e.g., ‘pricing’, ‘objection’, ‘budget’). Returns matching calls ranked by relevance.

Parameters

NameTypeRequiredDescription
keywordstringyesKeyword to search for in calls

Example call

Arguments

{
  "keyword": "pricing"
}

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_search_calls","arguments":{"keyword":"pricing"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('gong_search_calls', {
  "keyword": "pricing"
});

More examples

{
  "keyword": "budget objection"
}

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Response from Gong API with search results ranked by relevance to keyword query"
}

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 September 22, 2026