SkillAgentSearch skills...

gong-mcp

Gong.io MCP Server

Install / Use

claude mcp add cedricziel -- npx -y github:cedricziel/gong-mcp

If the server publishes to npm under a different name, use that package instead — check the repo README.

About this skill
🔌

MCP Server

Model Context Protocol server

Quality Score

65/100

Supported Platforms

Claude Code
Claude Desktop

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.

Substance
29/30
Structure
20/20
Description
4/15
Adoption
3/20
Freshness
11/15

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 found

Our 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.

SkillScoreStarsUpdatedFormat
gong-mcp (this skill)by cedricziel6534mo agoMCP Server
Agent-Reachby Panniantong10085.4k10d agoCLAUDE.md
headroomby headroomlabs-ai10073.8ktodayCLAUDE.md
rufloby ruvnet10073.3k1d agoCLAUDE.md
CowAgentby zhayujie10047.1ktodayCLAUDE.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.

Gong 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_calls tool 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 key
  • GONG_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:

  1. Open Cursor Settings
  2. Navigate to MCP Servers
  3. 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 date
  • to_date_time (string): ISO 8601 end date
  • workspace_id (string): Filter by workspace
  • call_ids (array): Specific call IDs
  • primary_user_ids (array): Filter by user/host
  • cursor (string): Pagination cursor

All parameters are optional. Returns calls with pagination support.

Resources

Static:

  • gong://status - Configuration status and health check
  • gong://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

  • gong-rs - Rust client library for the Gong API
  • rmcp - Official Rust SDK for Model Context Protocol

License

Apache-2.0

Related Skills

View on GitHub
GitHub Stars3
CategoryDevelopment
Updated3mo ago
Forks1

Languages

Rust

Trust signals

80/100

From repository metadata: license, adoption, age and documentation. Not a code audit — see the Safety scan above for what the skill file itself contains.

3 low1 info