Sanka MCP

Connect Claude Code, Cursor, and other AI agents to Sanka with MCP.

Overview

Sanka provides an MCP server so AI agents can safely read and update sales data with natural language. With MCP, your agent can:
  • create and update deals
  • create contacts and invoices
  • run outreach actions
  • orchestrate multi-step sales workflows
Use the hosted endpoint:
https://mcp.sanka.com/mcp
Use mcp-remote so the client can complete browser-based OAuth against the hosted server instead of pasting an API key into the config.

Example config (Codex / Cursor / Claude style)

{
  "mcpServers": {
    "sanka": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://mcp.sanka.com/mcp",
        "--resource",
        "https://mcp.sanka.com/mcp"
      ]
    }
  }
}
On first use, the client opens a browser window for sign-in and consent. mcp-remote stores the resulting tokens locally in ~/.mcp-auth.

Local MCP server (alternative)

If you prefer local execution:
npx sanka-sdk mcp --api-key sk_xxx
Use this when you need custom local networking, debugging, or controlled runtime environments.

Core MCP tools

Common tools include:
  • create_deal
  • list_deals
  • update_deal
  • create_contact
  • create_invoice
  • send_outreach
Tool availability can expand over time.

Security and operations

  • Keep agent scope minimal (least privilege).
  • Review the requested OAuth scopes during setup.
  • Clear stale local auth state from ~/.mcp-auth if re-authentication gets stuck.
  • Log critical mutations and review agent-triggered changes.

Suggested prompts

  • "Create a new deal for Acme Corp at $50K in discovery stage."
  • "Find open deals with no activity in 14 days and draft outreach."
  • "Generate an invoice for the latest closed-won Acme deal."