meetgeek-cli
v0.1.2
Published
CLI for MeetGeek meeting intelligence - list meetings, get summaries, transcripts, and search with natural language
Maintainers
Readme
MeetGeek CLI 🎙️
Command-line interface for MeetGeek meeting intelligence.
List your meetings, get AI summaries, view transcripts, and search across all your calls with natural language.
Installation
npm install -g meetgeek-cliSetup
Interactive setup (recommended)
meetgeek authThis will guide you through:
- Getting your API key from MeetGeek
- Verifying the key works
- Saving it securely to
~/.config/meetgeek/config.json
Manual setup
export MEETGEEK_API_KEY="your_api_key"Getting your API key
- Log in to meetgeek.ai
- Go to Integrations
- Find Public API Integration
- Generate or copy your API key
Usage
List meetings
meetgeek list # List recent meetings
meetgeek list --limit 20 # Show more meetingsGet meeting details
meetgeek show <meeting-id>Get AI summary
meetgeek summary <meeting-id>Shows the AI-generated summary including key points and action items.
Get transcript
meetgeek transcript <meeting-id> # Print to console
meetgeek transcript <meeting-id> -o call.txt # Save to fileGet highlights
meetgeek highlights <meeting-id>Search meetings
# Search in a specific meeting
meetgeek ask "budget discussion" -m <meeting-id>
# Search across all recent meetings
meetgeek ask "what did we decide about the timeline"Manage auth
meetgeek auth --show # Show current API key status
meetgeek auth --clear # Remove saved API keyExamples
# List your meetings
$ meetgeek list
📋 Recent Meetings:
94d7f121 ☕️ Coffee hour community
1/4/2026 • 88 min
81a6ab96 Quentin / Czesia
12/22/2025 • 26 min
# Get the summary
$ meetgeek summary 81a6ab96
📝 Meeting Summary:
The meeting focused on the technical demo of the competitive
monitoring platform and the behavior of automated workflows...
✅ Action Items:
• Implement TLDR per competitor
• Refine aggregation logic
• Send PDF via Slack for validation
# Search for a topic
$ meetgeek ask "slack integration" -m 81a6ab96
🔍 Searching for: "slack integration"
Found 5 matches:
[2:14:12 PM] Czesia:
We had talked about Slack integration, the idea was to have a TLDR...License
MIT © Quentin Daems
Credits
- Built with LoopShip 🚀
- Based on MeetGeek MCP Server
