💰 FUNDING NEWS: Hushh.ai Secures $5 Million Strategic Investment from hushhTech.com's Evergreen Renaissance AI Fund

💰 FUNDING NEWS: Hushh.ai Secures $5 Million Strategic Investment from hushhTech.com's Evergreen Renaissance AI Fund

💰 FUNDING NEWS: Hushh.ai Secures $5 Million Strategic Investment from hushhTech.com's Evergreen Renaissance AI Fund

Hushh Logo

Agent Kai API

Getting Started

Begin your first Kai integration with the consent-first PKM contract.

This page belongs to the Kai runtime lane: PKM, consent approval inside Kai, REST, and MCP. The separate Agentic APIs lane covers A2A, MuleSoft, and browser-proxy flows.

What you need

The live developer story is intentionally narrow: your app discovers user-specific PKM scopes, requests consent inside Kai, and reads only the slice the user approved. Start with the current runtime URLs, confirm your app identity in the developer console, and keep your integration scoped to one use case at a time.

  • Kai app URL: https://uat.hushh.ai
  • REST base URL: https://api.kai.hushh.ai/api/v1
  • MCP URL: https://api.kai.hushh.ai/mcp
  • npm bridge: @hushh/mcp@beta

Pick your runtime path

Use REST when you want an explicit HTTP workflow. Use remote MCP when your host supports it directly. Use the npm bridge when the host still expects a local stdio process.

REST quickstart

curl -s \
  "https://api.kai.hushh.ai/api/v1/user-scopes/user_123?token=<developer-token>"

Remote MCP quickstart

{
  "mcpServers": {
    "hushh-consent-remote": {
      "url": "https://api.kai.hushh.ai/mcp?token=<developer-token>"
    }
  }
}

Move into the console

After the runtime is wired, use the developer console to complete app identity, rotate tokens, and keep your support metadata current before asking real users for consent.

  • One developer app is created per signed-in Kai account.
  • One active developer token is kept at a time. Rotate it whenever you need a fresh credential.
  • Consent prompts show your app identity, not a raw token or opaque runtime id.