CLI · SDKs · MCP
Install the CLI, SDKs and MCP server from npm & PyPI.
Everything you need to script, embed and automate Kadaikodi from the terminal or your own code — the local AI agent, the control-plane CLI, TypeScript & Python SDKs, and a Model Context Protocol server for AI clients.
AI Agent
Requires Bun ≥ 1.3Local daemon + `kadaikodi` CLI for ops on your machine.
A lightweight local service that wires Kadaikodi into your laptop or server — surface merchant data, push catalog updates, and drive orders from the terminal. Install it globally and authenticate with the platform CLI to get going.
npm install -g @kadaikodi/agentCLI
Control-plane client `kadaikodi` — drive your commerce from the terminal.
The Kadaikodi platform CLI talks to the public GraphQL gateway with scoped token auth. Log in once, then drive catalog, orders, merchants, fulfilment, and marketplace workflows across your team from a subcommand suite.
npm install -g @kadaikodi/cliNode SDK
Official TypeScript SDK for programmatic access to the full API.
Typed, promise-based access to catalog, cart, checkout, orders, merchants, fulfilment, and investments. Drop it into any Node or Bun project to automate Kadaikodi from your own code.
npm install @kadaikodi/sdkPython SDK
Requires Python ≥ 3.10Async Python SDK for data pipelines, automation & notebooks.
A fully async SDK with a GraphQL client, automatic token refresh, and retry-with-backoff. Ideal for data pipelines, automation scripts, and notebooks working with catalog, orders, and merchant analytics.
pip install kadaikodi-sdkMCP Server
Wire Kadaikodi into Claude, Cursor & any Model Context Protocol client.
A Model Context Protocol server exposing Kadaikodi tools, resources, and prompts to AI assistants. Add the block below to your client config (e.g. `.mcp.json` or your editor’s MCP settings) and your agent can drive catalog, cart, and order workflows directly.
npx -y @kadaikodi/mcp{
"mcpServers": {
"kadaikodi": {
"command": "npx",
"args": ["-y", "@kadaikodi/mcp"]
}
}
}