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 --login

The canonical remote URL is:

https://salestouch.io/api/mcp

Local fallback

pnpm salestouch mcp serve

Practical rule

Use tools for actions and resources for context. A natural sequence is:

  1. Read prospect context.
  2. Inspect the latest thread if one exists.
  3. 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>"
    }
  }
}

On this page