Skip to main content

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:

  1. Pricing (mentioned in 8 calls)
  2. Implementation timeline (5 calls)
  3. 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_project
  • list_content / get_content
  • get_transcript
  • list_analyses / get_analysis
  • trigger_analysis
  • search_content
  • get_project_insights
  • And more...

See Resources and Tools for complete documentation.