Krisp MCP Server
Official Krisp MCP server that lets AI assistants search meetings, fetch transcripts and summaries, manage action items, and view upcoming calendar events.
Krisp MCP is the official, provider-hosted Model Context Protocol server from Krisp, the AI meeting assistant best known for noise cancellation, transcription, and AI-generated meeting notes. The server exposes your Krisp workspace data, including meeting transcripts, summaries, key points, action items, and upcoming calendar events, so AI assistants like Claude, Cursor, ChatGPT, and VS Code can query that context directly in natural language.
The server runs at https://mcp.krisp.ai/mcp and uses OAuth 2.0 with PKCE for authentication. It supports Streamable HTTP transport only (Server-Sent Events is not supported). On clients that cannot speak remote HTTP directly, the mcp-remote bridge can proxy the connection. Tools return both structured data and natural-language summaries that are optimized for agent consumption.
The MCP feature is available to users on Krisp's Core and Advanced plans. It is positioned for workflows that surface meeting context inside other tools: pulling action items into a task tracker, drafting follow-up emails from a meeting summary, or referencing decisions from past calls while planning the week ahead.
Tools
| Tool | Description |
|---|---|
search_meetings |
Search meetings by topic, content, attendees, or date range. Returns meeting metadata and relevant snippets. |
get_document |
Fetch a full document by its 32-character ID (meeting transcript, summary, agenda, etc.). Use after obtaining an ID from search results, action items, or upcoming meetings. |
list_action_items |
List action items (tasks and follow-ups) extracted from meetings, with filters for completion status and assignee. |
list_calendar |
List upcoming calendar meetings and their agenda IDs for the next 1 to 14 days. |
Prerequisites
- A Krisp account on the Core or Advanced plan
- An MCP-capable client (Claude Desktop, Claude Code, Cursor, VS Code, ChatGPT, etc.)
- For clients without native remote HTTP MCP support: Node.js with
npxavailable
Option A: Native remote HTTP (recommended)
For clients that support remote MCP servers directly, add this to your MCP configuration:
{
"mcpServers": {
"krisp": {
"url": "https://mcp.krisp.ai/mcp"
}
}
}
Option B: mcp-remote bridge
For clients that only support stdio-based MCP servers, use the mcp-remote bridge:
{
"mcpServers": {
"krisp": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.krisp.ai/mcp"]
}
}
}
Authentication
The first time you invoke a Krisp tool, the client will prompt you to complete an OAuth 2.0 (PKCE) flow in your browser. After authorization, the access token is sent on the Authorization: Bearer header for all MCP requests. If access is lost you can disconnect and reconnect from inside the client.
Notes
- Use only the official endpoint
https://mcp.krisp.ai/mcp. - Streamable HTTP transport is required. SSE is not supported.
- Enable human confirmation prompts in your client when possible so you can review what the agent reads from your meetings.
- Ask an AI assistant to summarize last week's customer calls and highlight any unresolved questions
- Pull open action items assigned to you from recent meetings and add them to your task manager
- Brief yourself before an upcoming meeting by fetching the agenda and prior transcripts with the same attendees
- Draft a follow-up email using the key points and decisions from a specific meeting transcript
- Search across meeting history for every mention of a feature, customer, or project to gather context for a decision
- "Find all meetings from the last 30 days where we discussed pricing and summarize the decisions."
- "List my open action items assigned to me and group them by meeting."
- "What meetings do I have in the next 7 days? Pull the agenda for the Acme call."
- "Get the full transcript for the Q2 planning meeting and draft a recap email."
- "Search my meetings for any mention of the migration project and list the action items."
- Official, provider-hosted server with no self-hosting or local dependencies
- OAuth 2.0 with PKCE, no manual API keys to manage or rotate
- Works with most major MCP clients (Claude Desktop/Code, Cursor, VS Code, ChatGPT) via remote HTTP or the
mcp-remotebridge - Tools return both structured data and natural-language summaries tuned for agent use
- Requires a Krisp Core or Advanced paid plan; not available on free tier
- Read-only surface: tools expose meeting data but do not include write actions like creating tasks or editing transcripts
- Streamable HTTP only; clients limited to SSE transport will not connect natively
- Fireflies.ai MCP for teams that already use Fireflies for meeting capture and transcription
- Zapier MCP as a generic bridge that can call Krisp actions through Zapier rather than directly
- Granola or Otter integrations for meeting notes in clients that support their respective APIs