AI-powered meeting transcript management. Sync from Recall.ai, search transcripts, generate summaries, track action items, list participants, and query meetings with natural language.
This skill provides meeting transcript management through the MeetingsMCP system.
Before using, run setup to configure your API keys:
cd "${CLAUDE_PLUGIN_ROOT}" && source .venv/bin/activate && python skill/run.py setup
Run meetings commands using:
cd "${CLAUDE_PLUGIN_ROOT}" && source .venv/bin/activate && python skill/run.py $ARGUMENTS
Where $ARGUMENTS is the command and its options.
| Command | Description |
|---|---|
setup |
Check setup status or configure API keys |
sync |
Sync new meetings from Recall.ai |
search <query> |
Search meeting transcripts |
ask <question> |
Ask a natural language question about your meetings |
summary <period> |
Generate a summary for a time period |
actions |
List action items from meetings |
list |
List recent meetings |
participants |
List all meeting participants |
show <id> |
Show details for a specific meeting |
decisions |
Find decisions made in meetings |
stats |
Show meeting statistics |
auto-sync |
Manage automatic background syncing |
help |
Show all available commands |
cd "${CLAUDE_PLUGIN_ROOT}" && source .venv/bin/activate && python skill/run.py participants
cd "${CLAUDE_PLUGIN_ROOT}" && source .venv/bin/activate && python skill/run.py list --participant "Sarah"
cd "${CLAUDE_PLUGIN_ROOT}" && source .venv/bin/activate && python skill/run.py search "pricing discussion" --date "this week"
cd "${CLAUDE_PLUGIN_ROOT}" && source .venv/bin/activate && python skill/run.py ask "What did we decide about the roadmap?"
cd "${CLAUDE_PLUGIN_ROOT}" && source .venv/bin/activate && python skill/run.py summary "last week" --focus "product decisions"
cd "${CLAUDE_PLUGIN_ROOT}" && source .venv/bin/activate && python skill/run.py stats
Supported date filters for --date option:
today, yesterdaythis week, last weekthis month, last monthlast N days (e.g., "last 7 days")YYYY-MM-DD (specific date)Run python setup.py for guided installation.