Developer platform — preview
The AI Workforce for Commerce.
Commerce APIs that AI agents can use natively. REST · SDKs · MCP server · Agent runtime. Built for humans. Native for AI agents.
Four surfaces. One platform.
Every surface generated from the same OpenAPI source. No drift, no hand-written docs.
Same platform. Two surfaces.
Human developers ship with REST + SDK. AI agents ship with MCP tools. One contract, one OpenAPI source.
Traditional — TypeScript SDK
@tanqory/sdk
import { Tanqory } from'@tanqory/sdk';
const tanqory = new Tanqory({ apiKey: process.env.TANQORY_KEY });
const product = await tanqory.products.create({
storeId: 'store_123',
title: 'AI-generated tee',
variants: [{ price: 2900, sku: 'TEE-001' }],
});AI-native — MCP tool
tanqory-mcp
# In Claude Code, Cursor, ChatGPT — same prompt.
> "Add an AI-generated tee to store_123 at $29."
→ tanqory.products.create
↳ store_id: "store_123"
↳ title: "AI-generated tee"
↳ variants: [{ price: 2900, sku: "TEE-001" }]
✓ product_xyz created (audit logged)