MCP
Use the SalesTouch MCP server with Claude Code and other assistants that speak the Model Context Protocol.
MCP
The SalesTouch MCP server exposes the same public command surface as tools, plus read-only resources for workspace context. CLI + skills is the default setup path; use MCP when you explicitly want the assistant to talk to SalesTouch through the MCP transport.
Remote setup
pnpm salestouch setup --claude --mcp --loginThe canonical remote URL is:
https://salestouch.io/api/mcpLocal fallback
pnpm salestouch mcp servePractical rule
Use tools for actions and resources for context. A natural sequence is:
- Read prospect context.
- Inspect the latest thread if one exists.
- Ask for approval only on approval-risk writes.
leadsmutate
Get Lead
Load one lead with the commercial and activity context needed to decide the next prospecting action.
JSON-RPC
json
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "lead.get",
"arguments": {
"lead_id": "<string>",
"prospect_id": "<string>",
"email": "<string>"
}
}
}