Otter MCP
Enables AI assistants to search and retrieve meeting transcripts from Otter.ai, supporting full-text search, speaker identification, and transcript retrieval.
README
Otter MCP
MCP (Model Context Protocol) server for Otter.ai transcript search and retrieval.
Enables AI assistants like Claude to search and retrieve meeting transcripts from your Otter.ai account.
Features
- Full-text search across all transcripts (not just titles/summaries)
- Speaker identification in search results
- Context snippets showing where matches occur
- Full transcript retrieval with speaker labels
- Recent transcripts listing with summaries
Installation
Using pip
pip install otter-mcp
From source
git clone https://github.com/DarrenZal/otter-mcp.git
cd otter-mcp
pip install -e .
Configuration
Claude Code
Add to your MCP servers using the CLI:
claude mcp add otter -e OTTER_EMAIL=your@email.com -e OTTER_PASSWORD=yourpassword -- otter-mcp
Or manually add to ~/.claude.json:
{
"mcpServers": {
"otter": {
"command": "otter-mcp",
"env": {
"OTTER_EMAIL": "your@email.com",
"OTTER_PASSWORD": "yourpassword"
}
}
}
}
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"otter": {
"command": "otter-mcp",
"env": {
"OTTER_EMAIL": "your@email.com",
"OTTER_PASSWORD": "yourpassword"
}
}
}
}
Available Tools
otter_search
Search across all transcripts by keyword, name, or phrase.
otter_search(query="project meeting", limit=10)
Returns matching transcripts with:
- Title and ID
- Date and duration
- Speaker names
- Context snippets showing matches
otter_list_transcripts
List recent transcripts with summaries.
otter_list_transcripts(limit=20)
otter_get_transcript
Get the full text of a specific transcript.
otter_get_transcript(transcript_id="abc123...")
otter_get_user
Get information about the authenticated Otter.ai account.
otter_get_user()
Examples
Find all meetings with a specific person:
otter_search("John Smith")
Search for a topic discussed:
otter_search("budget proposal Q4")
Get full transcript for follow-up:
otter_get_transcript("SwpVmqfaM86nEiqEfTnFm79X5LY")
How It Works
This MCP server uses the unofficial Otter.ai API to:
- Authenticate with your Otter.ai credentials
- Use the
advanced_searchendpoint for full-text search across all transcripts - Retrieve full transcript content with speaker diarization
The advanced_search API searches the actual transcript content, not just titles and summaries, making it much more useful for finding specific conversations.
Security Notes
- Credentials are passed via environment variables, not stored in code
- Uses HTTPS for all API communication
- Session tokens are managed in memory only
Credits
API client based on gmchad/otterai-api with additions for advanced search functionality.
License
MIT License - see LICENSE for details.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.