How it differs from an API key
The REST API authenticates a machine: a key belongs to your workspace and carries a blanket read or read-and-write scope. The MCP server authenticates a person. You sign in with your Leadey account, and every tool then enforces your own permissions — the same ones the Cockpit enforces.
Nothing an assistant does through MCP is something you could not do yourself. If your role cannot delete opportunities, neither can it.
Connecting
- Claude
- ChatGPT
- Anything else
In Settings → Connectors → Add custom connector, paste the endpoint above and click Connect. A Leadey sign-in opens; approve it, and the tools appear.From the command line:
If you are in more than one workspace
A Leadey login can belong to several workspaces, and your sign-in does not say which one you mean. Ask a question and the assistant will list them and ask — answer once and it carries that choice through the conversation. This is deliberate. These are different companies’ data, and a server that guessed would eventually guess wrong.What it can do
Find people and companies
Find people and companies
search_leads, get_lead, get_lead_timeline, get_lead_activities, search_companies, search_contacts, list_lead_statuses, list_workspacesThe timeline is person-scoped: calls, emails, texts, meetings and notes for the human, across every campaign they appear in — not just the one row you searched. Call recordings are never returned, only whether one exists.Pipeline
Pipeline
list_pipelines, search_opportunities, get_pipeline_metrics, create_opportunity, update_opportunity, move_opportunity_stage, win_opportunity, lose_opportunityMoney comes back as a decimal string beside a currency code, never a JSON number, and a workspace with deals in two currencies is reported per currency.Daily work
Daily work
list_tasks, create_task, complete_task, log_call, add_note, log_activity, list_activity_types, create_lead, update_lead, set_lead_statuslog_call records a call that already happened — it does not dial anyone.Reporting
Reporting
get_metrics_summary, get_call_metrics, get_meeting_metrics, get_pipeline_metricsEach takes a window (30 days by default, 62 maximum) and an optional groupBy of day, week, rep or campaign.Campaigns
Campaigns
list_campaigns, add_leads_to_campaignThe one to be careful with
Repeating a call
Some tools are safe to retry and some are not, and the distinction matters when an assistant is unsure whether a call went through.create_leadis safe. It deduplicates on the person across your whole workspace and returnsalreadyExists: trueon a repeat rather than a second row.create_task,log_call,add_note,log_activityandcreate_opportunityare not. A repeat creates a second record. Confirm before retrying rather than calling again.
Ids are never guessable
Every tool that acts on something takes an id, and those ids come from other tools: aleadId from search_leads, a stageId from list_pipelines, a status key from list_lead_statuses. An invented id is refused rather than matched to something close.