Integrate programmatically
AINative is agent-native. Every surface below is machine-readable so an autonomous agent can discover, authenticate, and start building with zero human handoff. Authenticate with the X-API-Key header. Both the /v1 and /api/v1 prefixes serve the same catalog.
Machine-readable surfaces
/llms.txtConcise, agent-readable index of the platform, endpoints, and docs.
/agent.mdAgent onboarding guide: auth, capabilities, and how to operate autonomously.
/openapi.jsonFull OpenAPI 3 specification for every REST endpoint.
/.well-known/ai-plugin.jsonChatGPT / plugin manifest describing the API for tool use.
/.well-known/mcp.jsonModel Context Protocol descriptor for MCP-capable agents.
Zero-auth on-ramp
Provision a working database with a single unauthenticated request — no signup, no key. Perfect for an agent that needs storage in the first second.
curl -X POST https://api.ainative.studio/api/v1/public/instant-db \
-H "Content-Type: application/json" \
-d '{}'SDKs and CLI
Skip hand-rolling HTTP calls — install a typed client for your stack.
npm install @ainative/next-sdkNext.js integration: streaming chat routes, auth middleware.
npm install @ainative/ai-sdk-providerVercel AI SDK provider for AINative models.
MCP servers
Wire AINative into any MCP-capable agent (Claude Code, Cursor, and more) with one command.
npx ainative-memory-mcpZeroDB persistent memory: store, recall, and semantically search agent memory.
npx ainative-prd-mcpGenerate and refine product requirement docs grounded in the live API catalog.
npx ainative-zerodb-memory-mcpZeroDB memory MCP server — direct access to store/recall/search tools from any MCP-capable agent.
npx ainative-zerodb-mcp-serverFull ZeroDB MCP server: vectors, tables, files, and event streams as agent-callable tools.