Use Claude Code or Claude Desktop to operate your CRM with natural language. Rex provides an MCP (Model Context Protocol) server that gives Claude direct access to your CRM data.
Add Rex to your Claude Code configuration (~/.claude/mcp.json):
{
"mcpServers": {
"rex": {
"command": "npx",
"args": ["-y", "@deepnoodle/rex-mcp"],
"env": {
"REX_API_KEY": "rex_live_...",
"REX_URL": "https://acme.rexgtm.com"
}
}
}
}
Start a new Claude Code session and ask:
Show me my Rex contacts
Claude will call the Rex MCP server, list your contacts, and display them.
Here are some things you can ask Claude to do:
Create a new lead: John Smith, john@acme.com, source is referral
Show me all open deals in my pipeline
Move the deal with Acme Corp to the "Negotiation" stage
Find all contacts who are prospects and were created this month
The MCP server exposes Rex's API as tools that Claude can call:
| Tool | Description |
|---|---|
list_contacts | Search and filter contacts |
create_contact | Create a new contact |
update_contact | Update contact fields |
list_deals | Search and filter deals |
create_deal | Create a new deal |
list_pipelines | View pipeline stages |
get_schema | Discover the full data model |
Claude discovers available tools automatically and uses the right ones based on your natural language request.