MCP Server
The Scribe Sight MCP (Model Context Protocol) server enables AI assistants like Claude to interact with your recordings and insights.
What is MCP?
MCP is a protocol that allows AI assistants to access external data sources and tools. With the Scribe Sight MCP server, you can:
- Ask Claude to summarize your sales calls
- Search for recordings mentioning specific topics
- Generate insights across multiple recordings
- Trigger analyses from within AI conversations
Installation
npm install -g @scribesight/mcp-server
Configuration
Add to your Claude Desktop config (~/.config/claude/claude_desktop_config.json):
{
"mcpServers": {
"scribesight": {
"command": "npx",
"args": ["@scribesight/mcp-server"],
"env": {
"SCRIBESIGHT_API_KEY": "sk_live_xxxxxxxxxxxx"
}
}
}
}
Example Conversations
User: "What were the top objections in last week's sales calls?"
Claude: Uses list_content and get_analysis tools to gather data, then synthesizes:
"Based on 12 sales calls from last week, the top objections were:
- Pricing (mentioned in 8 calls)
- Implementation timeline (5 calls)
- Integration concerns (4 calls)"
User: "Find any calls where competitor X was mentioned"
Claude: Uses search_content tool:
"I found 3 calls mentioning Competitor X..."
Available Resources
- Organizations
- Projects
- Content (recordings)
- Transcripts
- Analyses
- Project Insights
Available Tools
list_projects/get_projectlist_content/get_contentget_transcriptlist_analyses/get_analysistrigger_analysissearch_contentget_project_insights- And more...