Skip to main content

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
Add your API key in the URL query:
https://mcp.sanka.com/mcp?apiKey=sk_test_xxx

Example config (Claude Code / Cursor style)

{
  "mcpServers": {
    "sanka": {
      "type": "url",
      "url": "https://mcp.sanka.com/mcp?apiKey=sk_test_xxx"
    }
  }
}

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

  • Create separate API keys per environment (dev/staging/prod).
  • Rotate keys regularly.
  • Keep agent scope minimal (least privilege).
  • 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.”