smithery/neversight

kapso-api

Kapso Platform API for customer onboarding, setup links, phone number provisioning, and connection detection. Use when working with multi-tenant WhatsApp integrations, embedded signup, or customer management.

Installation

$ npx skills add smithery/neversight --skill kapso-api

Also in this package

Other skills from smithery/neversight · top by installs.

npx skills add smithery/neversight

Browse all from smithery/neversight

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,915 B
  • docs SUMMARY.md 225 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Kapso Platform API

When to use

Use this skill for Platform API operations: creating customers, generating setup links, provisioning phone numbers, or detecting WhatsApp connections.

Setup

Base host: https://api.kapso.ai (scripts append /platform/v1)

Auth header:

X-API-Key: <api_key>

How to

Onboard a customer

  1. Create customer: POST /customers
  2. Generate setup link: POST /customers/:id/setup_links
  3. Customer completes embedded signup
  4. Use phonenumberid to send messages

Detect connection

Option A: Project webhook whatsapp.phone_number.created

Option B: Success redirect URL query params

Use both for best UX and backend reliability.

Provision phone numbers

When creating a setup link, set:

{
  "setup_link": {
    "provision_phone_number": true,
    "phone_number_country_isos": ["US"]
  }
}

Notes

  • Platform API base: /platform/v1
  • Meta proxy base: /meta/whatsapp/v24.0 (use for messaging and templates)
  • Use phonenumberid as the primary WhatsApp identifier

References

  • [references/platform-api-reference.md](references/platform-api-reference.md) - Full endpoint reference
  • [references/getting-started.md](references/getting-started.md) - Initial setup guide
  • [references/setup-links.md](references/setup-links.md) - Setup link configuration
  • [references/detecting-whatsapp-connection.md](references/detecting-whatsapp-connection.md) - Connection detection methods

Related skills

  • kapso-automation - Workflow automation
  • whatsapp-messaging - WhatsApp messaging and templates
  • whatsapp-flows - WhatsApp Flows
  • kapso-ops - Operations and webhooks