MCP-Native

The CRM that agents operate

AI agents manage deals, contacts, and pipeline data natively through MCP. No webhooks. No middleware. Direct access.

1. Get your API Key
Click "Generate" to create your API key
⚠ Save this key now — it won't be shown again.
2. Available Tools
Deals
GET
list_deals
List deals with filters by stage, value range, sort order
/api/mcp/deals
GET
get_deal
Get a single deal by ID with all fields
/api/mcp/deals/:id
POST
create_deal
Create a new deal in the pipeline
/api/mcp/deals
PATCH
update_deal
Update deal stage, value, notes, or any field
/api/mcp/deals/:id
GET
get_pipeline_summary
Pipeline metrics — deals by stage, total value, win rate, weighted pipeline, current MRR
/api/mcp/pipeline/summary
Contacts
GET
list_contacts
List contacts with filters by company, source, pagination
/api/mcp/contacts
GET
get_contact
Get a contact by ID with linked deals and roles
/api/mcp/contacts/:id
POST
create_contact
Create a new contact in the CRM
/api/mcp/contacts
PATCH
update_contact
Update contact name, email, title, company, or metadata
/api/mcp/contacts/:id
GET
search_contacts
Full-text search across name, email, and company
/api/mcp/contacts/search?q=
DELETE
delete_contact
Soft-delete a contact (preserves data, removes from listings)
/api/mcp/contacts/:id
POST
link_contact_to_deal
Link a contact to a deal with a role — decision_maker, champion, influencer, end_user
/api/mcp/contacts/:id/deals
Activities & Timelines
GET
list_activities
List activities with filters by deal, contact, type, date range
/api/mcp/activities
GET
get_activity
Get a single activity by ID
/api/mcp/activities/:id
POST
create_activity
Log a note, call, email, meeting, or task — attach to deal and/or contact
/api/mcp/activities
PATCH
update_activity
Update activity subject, body, type, or linked entities
/api/mcp/activities/:id
GET
get_deal_timeline
Full chronological activity history for a deal — every call, email, and note
/api/mcp/deals/:id/timeline
GET
get_contact_timeline
Full chronological activity history for a contact — complete interaction record
/api/mcp/contacts/:id/timeline
3. Example Requests
curl Python Node.js

                
4. Try It Live
Response will appear here...