Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"gong": {
"env": {
"GONG_ACCESS_KEY": "your-access-key",
"GONG_ACCESS_KEY_SECRET": "your-secret-key"
},
"args": [
"gongio-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP (Model Context Protocol) server that provides access to your Gong.io data. Query calls, transcripts, users, keyword trackers, and more directly from Claude or any MCP-compatible client.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'gongio-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked gongio-mcp against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in communication / analytics
⚡ A Simple / Speedy / Secure Link Shortener with Analytics, 100% run on Cloudflare.
MCP Server for GCP environment for interacting with various Observability APIs.
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
A Model Context Protocol (MCP) server for interacting with Microsoft 365 and Office services through the Graph API
MCP Security Weekly
Get CVE alerts and security updates for Gongio MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP (Model Context Protocol) server that provides access to your Gong.io data. Query calls, transcripts, users, keyword trackers, and more directly from Claude or any MCP-compatible client.
| Tool | Description |
|---|---|
list_calls | List calls with date/workspace filtering |
get_call | Get metadata for a specific call |
get_call_summary | AI summary: key points, topics, action items |
get_call_transcript | Full speaker-attributed transcript (paginated) |
search_calls | Rich call search — participant, customer, tracker, scope, duration, title, and more |
search_calls_by_account | Find calls involving a specific account/company by email domain |
search_calls_by_opportunity | Find calls linked to specific CRM Opportunities |
search_transcripts | Free-text keyword search across transcript sentences |
get_trackers | List keyword trackers (competitors, topics, etc.) |
list_workspaces | List workspaces and get IDs for use in other tools |
list_library_folders | List public call library folders |
get_library_folder_calls | Get calls saved in a specific library folder |
get_user | Get a specific user's profile |
search_users | Search/filter users by IDs or creation date |
list_users | List all workspace users |
search_calls can return a lot of data. Under the hood it:
Guardrails built in:
MAX_MCP_OUTPUT_LENGTH (default 50000 chars, configurable via env var), the tool automatically falls back to a compact table with a warning. You still get every call ID and title — drill in with get_call_summary on specific ones.include: ["outline"] is expensive (~80KB per call). Avoid it in multi-call searches.trackers filter (or non-zero trackers if no filter) — no more walls of (0x) noise.If your query hits the output cap, narrow it:
fromDateTime / toDateTimescope: "External" or scope: "Internal"minDuration: 600 to skip short no-showscustomerName or trackers filterinclude options like outlinenpx gongio-mcp
npm install -g gongio-mcp
gongio-mcp
git clone https://github.com/JustinBeckwith/gongio-mcp.git
cd gongio-mcp
npm install
npm run build
node dist/index.js
git clone https://github.com/JustinBeckwith/gongio-mcp.git
cd gongio-mcp
docker build -t gongio-mcp
... [View full README on GitHub](https://github.com/JustinBeckwith/gongio-mcp#readme)