For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Connect your Gong sales call recordings to the Mind Reasoner MCP Server
Access Sales Call Transcripts
Connect Gong to pull sales call recordings and transcripts directly into your AI workflows. Create minds from customer conversations without manual file downloads.
What You’ll Get
When you connect Gong to your MCP server, you unlock 3 additional tools:
gong_list_calls - List call recordings with date filtering and metadata
gong_get_transcript - Get detailed transcripts with speaker names and emails
gong_get_call_details - Get participant details, topics, structure, and speaker stats
These tools work alongside the 8 core Mind Reasoner tools, giving you seamless access to your sales call data.
Prerequisites
Gong Account Requirements
To generate API credentials, you need Technical Administrator role in your Gong account. If you don’t have this role, contact your Gong administrator.
Choose Your Integration Approach
You have two options for working with Gong data:
Option 1: MCP Server Integration (Recommended)
Best for: AI-driven workflows, natural language access, no coding
Benefits:
Access Gong calls through simple AI commands
Automatic authentication and error handling
Seamless integration with Mind Reasoner mind creation
Works in Claude Desktop, Claude Code, and other MCP clients
Setup: Follow the steps below to add Gong credentials to your MCP server
Option 2: Direct Gong API Integration
Best for: Custom applications, specialized workflows, full API control
Benefits:
Complete control over API calls and data processing
The Access Key Secret is shown only once. Copy and save it securely immediately—you cannot retrieve it later. If you lose it, you’ll need to generate a new key pair.
The configuration method depends on how you’re running the MCP server:
For Local/Stdio Mode (Claude Desktop, Claude Code CLI)
Add these environment variables to your configuration:
Environment Variables (.env)
$
# Required - Mind Reasoner
$
MIND_REASONER_API_KEY=your_mind_reasoner_key
$
$
# Optional - Gong Integration
$
GONG_ACCESS_KEY={{GONG_ACCESS_KEY}}
$
GONG_ACCESS_SECRET={{GONG_ACCESS_SECRET}}
For Hosted/HTTP Mode (Serverless, Custom Clients)
Pass credentials as HTTP headers with each request:
HTTP Headers
$
# Required
$
Authorization: Bearer YOUR_MIND_REASONER_KEY
$
$
# Optional - Gong
$
X-Gong-Access-Key: {{GONG_ACCESS_KEY}}
$
X-Gong-Access-Secret: {{GONG_ACCESS_SECRET}}
Per-Request Authentication (HTTP Mode)
In HTTP mode, you can provide different Gong credentials for each request. This is useful for multi-tenant applications or supporting multiple Gong accounts.