Model Context Protocol (MCP) Integration
Hindsight exposes its AI agent capabilities through the Model Context Protocol (MCP), allowing AI assistants to directly query your deal data, research competitors, and analyze pipeline metrics. Compatible with: Claude Desktop, Claude Code, ChatGPT, Cursor, Cline, and any MCP-compatible client. Generate an API key from Settings → API Keys in the Hindsight app before getting started.Setup
- Claude
- OpenAI / ChatGPT
- Direct API
Claude Desktop
Open your config file and add the Hindsight server:- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
Claude Code
Run this command in your terminal:Available Tools
1. pull_schema
Fetch the schema of your deal grid — field names, types, and structure. Use this beforecreate_dataset to understand what data is available.
2. create_dataset
Export your deal grid data as a structured JSON dataset. Returns ajson_id that you pass to analyze_deal_data.
3. analyze_deal_data
Analyze quantitative deal data: win rates, trends, counts, and metrics across your pipeline. Requires ajson_id from create_dataset.
Parameters:
| Parameter | Type | Description |
|---|---|---|
question | string | The data analysis question to answer |
json_id | string | Dataset ID returned by create_dataset |
- “What is our win rate by industry?”
- “Which competitors do we lose to most often?”
- “What’s the average deal size for closed won deals in Q1?“
4. research_competitive_intel
Research competitive intelligence using Hindsight’s knowledge base and live web search. Handles multi-step research internally. Parameters:| Parameter | Type | Description |
|---|---|---|
question | string | The competitive intelligence question to research |
- “What are Salesforce’s main weaknesses based on our deals?”
- “How should we position against HubSpot?”
- “What recent news is there about Gong?“
5. research_deals
Research qualitative insights from deal transcripts, emails, call recordings, and CRM notes. Handles multi-step document retrieval internally. Parameters:| Parameter | Type | Description |
|---|---|---|
question | string | The deal research question to investigate |
- “Why are we losing deals to Competitor X?”
- “What objections come up most often in enterprise deals?”
- “What did prospects say about our pricing in lost deals last quarter?”
How It Works
Each tool delegates to Hindsight’s AI agent pipeline. When you callresearch_competitive_intel or research_deals, Hindsight runs a full multi-step agent behind the scenes — searching documents, querying your knowledge base, and synthesizing a response — and returns the final answer.
For analyze_deal_data, Hindsight runs structured queries against your exported deal grid and computes the metrics you ask for.
