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
Option 1: Desktop Extension (Recommended for Organizations)
- Download
gong-lite.mcpb - Double-click to install, or go to Claude Desktop → Settings → Extensions → Install
- 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
- Log into Gong as an admin
- Go to Company Settings → Ecosystem → API
- Create a new API key
- 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 testLicense
MIT