Groupthink's MCP (Model Context Protocol) server lets you access your meetings, recaps, transcripts, and relationships directly from Claude Code. Ask questions about past meetings, look up interaction history with contacts, and get meeting summaries without leaving your terminal.
The MCP server provides four powerful tools:
| Tool | Description | | -------------------- | ------------------------------------------------------------------------ | | list_meetings | See your recent meetings with dates, attendees, and recap availability | | get_recap | Get AI-generated summaries, decisions, and action items from any meeting | | get_transcript | Access full meeting transcriptions for detailed context | | get_relationship | Look up your interaction history with any contact |
Before setting up the MCP server, you'll need:
Open your terminal and install the Groupthink MCP server:
npm install -g @groupthink/mcp-server
Add the Groupthink MCP server to your Claude Code configuration.
On macOS/Linux, edit ~/.claude/claude_desktop_config.json:
{
"mcpServers": {
"groupthink": {
"command": "npx",
"args": ["@groupthink/mcp-server"],
"env": {
"GROUPTHINK_API_TOKEN": "your-api-token-here"
}
}
}
}
Replace your-api-token-here with the API token you created earlier.
Once configured, you can interact with Groupthink naturally in Claude Code:
List recent meetings:
"What meetings did I have this week?"
"Show me my last 5 meetings"
Get meeting details:
"Get the recap from my standup yesterday"
"What were the key decisions from the product meeting?"
"What action items came out of the Acme call?"
Access transcripts:
"Show me the transcript from the investor meeting"
"What exactly did Sarah say about the timeline?"
Look up relationships:
"What's my history with john@acme.com?"
"When did I last meet with the Acme team?"
After a day of meetings, catch up quickly:
Before an important meeting:
"GROUPTHINK_API_TOKEN environment variable is required" Make sure you've added your API token to the Claude Code configuration file.
"Groupthink API error (401)" Your API token may be invalid or expired. Create a new token in Groupthink settings.
"No recent meetings found" Ensure you have meetings recorded in Groupthink. The MCP server only shows meetings that have ended and been processed.
The MCP server is open source and available on GitHub: github.com/Groupthinkai/groupthink-mcp