gong-mcp
Gong.io MCP Server
Install / Use
claude mcp add cedricziel -- npx -y github:cedricziel/gong-mcpIf the server publishes to npm under a different name, use that package instead — check the repo README.
MCP Server
Model Context Protocol server
Quality Score
Category
Development & EngineeringSupported Platforms
Tags
Our assessment of gong-mcp
gong-mcp scores 65/100 on our quality scale, 1259th of 1,937 Development & Engineering skills we index.
Its MCP Server is 7.2 KB long, well organised into 30 sections with 17 code examples: a thorough specification that gives an agent plenty to work with.
It has 3 GitHub stars, so there is little community track record yet; judge it on its content.
Maintenance, license and trust
- The repository was last updated about 4 months ago. That is recent enough to be usable, but agent tooling moves fast, so check the instructions against your agent's current version.
- Our last check on 2026-09-10 found the source still online.
- It is released under the Apache-2.0 license, a permissive license that allows use, modification and commercial use with attribution.
- Its trust signals score 80/100, with 3 cautions from licensing, adoption, age or documentation. These come from repository metadata, not a code audit — read the skill file before letting an agent act on it.
Safety scan
No issues foundOur scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands.
Automated pattern scan on 2026-09-26. It catches known dangerous patterns, not every risk — read a skill before letting an agent act on it.
gong-mcp compared with similar skills
All 4 of these similar skills score higher than gong-mcp; compare them before choosing.
| Skill | Score | Stars | Updated | Format |
|---|---|---|---|---|
| gong-mcp (this skill)by cedricziel | 65 | 3 | 4mo ago | MCP Server |
| Agent-Reachby Panniantong | 100 | 85.4k | 10d ago | CLAUDE.md |
| headroomby headroomlabs-ai | 100 | 73.8k | today | CLAUDE.md |
| rufloby ruvnet | 100 | 73.3k | 1d ago | CLAUDE.md |
| CowAgentby zhayujie | 100 | 47.1k | today | CLAUDE.md |
Frequently asked questions
- How do I install gong-mcp?
- Run
claude mcp add cedricziel -- npx -y github:cedricziel/gong-mcp. The install tabs above show the steps for each supported agent. - Which AI agents does gong-mcp work with?
- It is written for Claude Code and Claude Desktop, as a MCP Server file. Other agents that read the same format can often use it too.
- Is gong-mcp safe to use?
- Our scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands. It is Apache-2.0-licensed and scores 80/100 on trust signals. Skills are instructions an agent will follow, so read the file before installing it and do not approve commands you do not understand.
- Is gong-mcp still maintained?
- The repository was last updated about 4 months ago. That is recent enough to be usable, but agent tooling moves fast, so check the instructions against your agent's current version.
Skill content
View source on GitHubGong MCP Server
A Model Context Protocol (MCP) server that provides access to Gong calls and data via tools (for search) and resources (for direct access).
Features
- Flexible call search via
search_callstool with comprehensive filters - Direct data access via resources (transcripts, users, status)
- Pagination support with cursor-based navigation
- Dual transport modes: stdio (default) and Streamable HTTP for web-based clients
- Built with the official Rust MCP SDK (rmcp v0.8)
- Docker container support for easy deployment
Prerequisites
- Gong API credentials (Access Key and Access Key Secret)
- Gong Base URL for your organization
Configuration
The server requires the following environment variables:
GONG_BASE_URL: Your Gong API base URL (e.g.,https://api.gong.io)GONG_ACCESS_KEY: Your Gong API access keyGONG_ACCESS_KEY_SECRET: Your Gong API access key secret
Transport Modes
The server supports two transport modes:
stdio (Default)
Stdio transport uses standard input/output for communication. This is the default mode and is suitable for:
- Claude Desktop integration
- Local CLI usage
- Process-based MCP clients
HTTP (Streamable HTTP)
Streamable HTTP transport provides spec-compliant HTTP-based communication for web clients. Use this mode for:
- Web-based applications
- Remote access scenarios
- Cloud deployments
- Modern HTTP/2 and HTTP/3 support
CLI Options:
--mode <stdio|http>- Select transport mode (default: stdio)--host <address>- Host to bind to in HTTP mode (default: 127.0.0.1, or 0.0.0.0 in Docker)--port <port>- Port to bind to in HTTP mode (default: 8080)
Examples:
# Stdio mode (default)
gong-mcp
# HTTP mode on localhost
gong-mcp --mode http --host 127.0.0.1 --port 8080
# HTTP mode for remote access
gong-mcp --mode http --host 0.0.0.0 --port 8080
HTTP Endpoint:
http://<host>:<port>/mcp- Streamable HTTP endpoint (MCP spec 2025-03-26)
Installation
Using Docker (Recommended)
Pull the pre-built image from GitHub Container Registry:
docker pull ghcr.io/cedricziel/gong-mcp:latest
Run the container:
Stdio mode (for Claude Desktop, default):
docker run -i --rm \
-e GONG_BASE_URL="https://api.gong.io" \
-e GONG_ACCESS_KEY="your-access-key" \
-e GONG_ACCESS_KEY_SECRET="your-secret" \
ghcr.io/cedricziel/gong-mcp:latest
HTTP mode (for web clients):
docker run -d \
-p 8080:8080 \
-e GONG_BASE_URL="https://api.gong.io" \
-e GONG_ACCESS_KEY="your-access-key" \
-e GONG_ACCESS_KEY_SECRET="your-secret" \
ghcr.io/cedricziel/gong-mcp:latest \
--mode http --host 0.0.0.0 --port 8080
Then connect to http://localhost:8080/mcp from your web client.
From Source
Build:
cargo build --release
Run in stdio mode:
GONG_BASE_URL="https://api.gong.io" \
GONG_ACCESS_KEY="your-access-key" \
GONG_ACCESS_KEY_SECRET="your-secret" \
./target/release/gong-mcp
Run in HTTP mode:
GONG_BASE_URL="https://api.gong.io" \
GONG_ACCESS_KEY="your-access-key" \
GONG_ACCESS_KEY_SECRET="your-secret" \
./target/release/gong-mcp --mode http --host 127.0.0.1 --port 8080
Using with Claude Desktop
Add the following to your Claude Desktop configuration file:
macOS
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"gong": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"GONG_BASE_URL=https://api.gong.io",
"-e",
"GONG_ACCESS_KEY=your-access-key",
"-e",
"GONG_ACCESS_KEY_SECRET=your-secret",
"ghcr.io/cedricziel/gong-mcp:latest"
]
}
}
}
Windows
Edit %APPDATA%\Claude\claude_desktop_config.json:
{
"mcpServers": {
"gong": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"GONG_BASE_URL=https://api.gong.io",
"-e",
"GONG_ACCESS_KEY=your-access-key",
"-e",
"GONG_ACCESS_KEY_SECRET=your-secret",
"ghcr.io/cedricziel/gong-mcp:latest"
]
}
}
}
Linux
Edit ~/.config/Claude/claude_desktop_config.json:
{
"mcpServers": {
"gong": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"GONG_BASE_URL=https://api.gong.io",
"-e",
"GONG_ACCESS_KEY=your-access-key",
"-e",
"GONG_ACCESS_KEY_SECRET=your-secret",
"ghcr.io/cedricziel/gong-mcp:latest"
]
}
}
}
Using with Claude Code (Cursor IDE)
Add to your Cursor settings:
- Open Cursor Settings
- Navigate to MCP Servers
- Add a new server configuration:
{
"gong": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"GONG_BASE_URL=https://api.gong.io",
"-e",
"GONG_ACCESS_KEY=your-access-key",
"-e",
"GONG_ACCESS_KEY_SECRET=your-secret",
"ghcr.io/cedricziel/gong-mcp:latest"
]
}
}
Available Capabilities
Once configured, the server exposes:
Tools
search_calls - Flexible call search with optional filters:
from_date_time(string): ISO 8601 start dateto_date_time(string): ISO 8601 end dateworkspace_id(string): Filter by workspacecall_ids(array): Specific call IDsprimary_user_ids(array): Filter by user/hostcursor(string): Pagination cursor
All parameters are optional. Returns calls with pagination support.
Resources
Static:
gong://status- Configuration status and health checkgong://users- List of users in your Gong workspace
Dynamic (templates):
gong://calls/{callId}/transcript- Get transcript for a specific call
Usage Examples
Searching for Calls
Ask Claude to search for calls with natural language:
- "Show me calls from last week"
- "Find calls where user ID 12345 participated in January"
- "Get calls from workspace W789"
Claude will use the search_calls tool with appropriate parameters:
{
"name": "search_calls",
"arguments": {
"from_date_time": "2024-01-01T00:00:00Z",
"to_date_time": "2024-01-31T23:59:59Z",
"primary_user_ids": ["12345"]
}
}
Accessing Transcripts
Once you have a call ID from search results, ask for the transcript:
- "Show me the transcript for call ABC123"
Claude will access: gong://calls/ABC123/transcript
Development
Building
cargo build
Testing
cargo test
Running locally
Stdio mode (default):
GONG_BASE_URL="https://api.gong.io" \
GONG_ACCESS_KEY="your-access-key" \
GONG_ACCESS_KEY_SECRET="your-secret" \
cargo run
HTTP mode:
GONG_BASE_URL="https://api.gong.io" \
GONG_ACCESS_KEY="your-access-key" \
GONG_ACCESS_KEY_SECRET="your-secret" \
cargo run -- --mode http --host 127.0.0.1 --port 8080
Get help:
cargo run -- --help
Dependencies
License
Apache-2.0
Related Skills
Agent-Reach
85.4kGive your AI agent eyes to see the entire internet. Read & search Twitter, Reddit, YouTube, GitHub, Bilibili, XiaoHongShu — one CLI, zero API fees.
headroom
73.8kCompress tool outputs, logs, files, and RAG chunks before they reach the LLM. 20% fewer tokens for coding agents, 60-95% fewer tokens for JSON, same answers. Library, proxy, MCP server.
ruflo
73.3k🌊 The original agent harness. Deploy intelligent multi-player swarms, coordinate autonomous workflows, and build conversational AI systems. Features adaptive memory, self-learning intelligence, federation, vector RAG integration, and native Claude Code / Codex / Hermes and many more Integrated
CowAgent
47.1kOpen-source super AI assistant & Agent Harness. Plans tasks, runs tools and skills, self-evolves with memory and knowledge. Multi-agent, multi-model, multi-channel. Lightweight, extensible, one-line install.
Languages
Trust signals
From repository metadata: license, adoption, age and documentation. Not a code audit — see the Safety scan above for what the skill file itself contains.
