JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 38
  • Score
    100M100P100Q56100F
  • License MIT

MCP server for Gong.io - Access meeting transcripts, summaries, and analytics via Claude

Package Exports

  • @shawnfroos/gong-lite
  • @shawnfroos/gong-lite/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@shawnfroos/gong-lite) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Gong MCP Server

MCP server for accessing Gong meeting data through Claude Desktop.

Features

10 tools for comprehensive Gong access:

Tool Description
list_calls List calls with date/participant filters
get_call Get call details
get_transcript Full transcript with speaker attribution
list_users List Gong users
search_calls Search transcripts for keywords
search_summaries Fast topic search via AI summaries
get_call_summary AI summary, highlights, next steps
get_call_analytics Call metrics and talk times
export_call_markdown Export as markdown (summary or full)
export_summaries_csv Batch export for spreadsheets

Installation

  1. Download gong-lite.mcpb
  2. Double-click to install, or go to Claude Desktop → Settings → Extensions → Install
  3. Enter your Gong API credentials when prompted

Option 2: Manual Configuration

Add to Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "gong": {
      "command": "node",
      "args": ["/path/to/gong-lite/dist/index.js"],
      "env": {
        "GONG_ACCESS_KEY": "your-access-key",
        "GONG_SECRET_KEY": "your-secret-key"
      }
    }
  }
}

Getting Gong API Credentials

  1. Log into Gong as an admin
  2. Go to Company SettingsEcosystemAPI
  3. Create a new API key
  4. Copy the Access Key and Secret Key

Usage Examples

  • "Show me calls from last week"
  • "Find calls where we discussed pricing"
  • "Get the summary of my call with Acme Corp"
  • "Export last month's call summaries as CSV"

Development

npm install
npm run build
npm test

License

MIT