AINative Platform Overview
AINative Studio is an AI development platform that provides APIs, SDKs, MCP tools, and an agent framework for building production AI applications.
What You Can Build
| Goal | Tool | Skill |
|---|
| Add AI chat to your app | Chat Completions API / SDKs | INLINECODE0 |
| Add persistent memory to agents |
ZeroMemory API / MCP |
zeromemory-guide |
| Use 76+ database/vector tools | ZeroDB MCP Server |
zerodb-mcp-guide |
| Build a custom MCP server | MCP Builder guide |
ainative-mcp-builder |
| Build multi-agent systems | Agent Framework |
ainative-agent-framework |
| Monetize your AI app | Echo Developer Program |
echo-developer-guide |
| Authenticate users | Auth Guide |
ainative-auth-guide |
| Discover all API endpoints | API Discovery |
ainative-api-discovery |
Platform Components
APIs (89+ endpoints)
Base URL:
https://api.ainative.studio
| Category | Endpoints | Auth |
|---|
| Chat Completions | INLINECODE9 | API Key |
| Memory (ZeroMemory) |
/api/v1/public/memory/v2/ | API Key |
| ZeroDB |
/api/v1/public/zerodb/ | API Key |
| Auth & Users |
/api/v1/auth/,
/api/v1/users/ | JWT |
| Credits & Billing |
/api/v1/public/credits/ | API Key |
| Developer Program |
/api/v1/echo/ | JWT |
| Admin |
/admin/ | Superuser JWT |
Published SDKs
CODEBLOCK0
Published MCP Servers
CODEBLOCK1
CLI Tools
CODEBLOCK2
Published Python Packages
CODEBLOCK3
Quick Start (30 seconds)
CODEBLOCK4
Authentication Methods
| Method | Use Case | Header |
|---|
| API Key | Server-side, agents, SDKs | INLINECODE17 |
| Bearer JWT |
User sessions |
Authorization: Bearer <token> |
| OAuth2 | Third-party integrations | Standard OAuth2 flow |
Related Skills
- -
ainative-chat-completions — Build conversational AI - INLINECODE20 — Implement authentication
- INLINECODE21 — Explore all endpoints
- INLINECODE22 — Use 76 database/vector tools
- INLINECODE23 — Add agent memory
- INLINECODE24 — Build custom MCP servers
- INLINECODE25 — Multi-agent systems
- INLINECODE26 — Monetize your AI app
References
- - API docs: INLINECODE27
- Quick start: INLINECODE28
- Auth guide: INLINECODE29
AINative 平台概览
AINative Studio 是一个 AI 开发平台,提供 API、SDK、MCP 工具和智能体框架,用于构建生产级 AI 应用。
你可以构建什么
| 目标 | 工具 | 技能 |
|---|
| 为应用添加 AI 聊天功能 | Chat Completions API / SDK | ainative-chat-completions |
| 为智能体添加持久记忆 |
ZeroMemory API / MCP | zeromemory-guide |
| 使用 76+ 数据库/向量工具 | ZeroDB MCP 服务器 | zerodb-mcp-guide |
| 构建自定义 MCP 服务器 | MCP Builder 指南 | ainative-mcp-builder |
| 构建多智能体系统 | 智能体框架 | ainative-agent-framework |
| 通过 AI 应用盈利 | Echo 开发者计划 | echo-developer-guide |
| 用户认证 | 认证指南 | ainative-auth-guide |
| 发现所有 API 端点 | API 发现 | ainative-api-discovery |
平台组件
API(89+ 个端点)
基础 URL:https://api.ainative.studio
| 类别 | 端点 | 认证方式 |
|---|
| Chat Completions | /v1/public/chat/completions | API 密钥 |
| 记忆(ZeroMemory) |
/api/v1/public/memory/v2/ | API 密钥 |
| ZeroDB | /api/v1/public/zerodb/ | API 密钥 |
| 认证与用户 | /api/v1/auth/、/api/v1/users/ | JWT |
| 积分与计费 | /api/v1/public/credits/ | API 密钥 |
| 开发者计划 | /api/v1/echo/ | JWT |
| 管理后台 | /admin/ | 超级用户 JWT |
已发布的 SDK
bash
React
npm install @ainative/react-sdk
Next.js
npm install @ainative/next-sdk
Svelte
npm install @ainative/svelte-sdk
Vue
npm install @ainative/vue-sdk
已发布的 MCP 服务器
bash
完整版 ZeroDB MCP(76 个工具——向量、记忆、NoSQL、文件、PostgreSQL)
npm install -g ainative-zerodb-mcp-server
仅记忆版 MCP(6 个工具——轻量级)
npm install -g ainative-zerodb-memory-mcp
CLI 工具
bash
ZeroDB 即时项目设置(自动配置 IDE)
npx zerodb init
已发布的 Python 包
bash
pip install zerodb-mcp # Python MCP 客户端
pip install zerodb-cli # Python CLI
pip install langchain-zerodb # LangChain 集成
pip install llama-index-vector-stores-zerodb # LlamaIndex 集成
快速开始(30 秒)
bash
1. 获取即时 API 密钥 + 项目
npx zerodb init
2. 发起你的第一个 API 调用
curl -X POST https://api.ainative.studio/v1/public/chat/completions \
-H X-API-Key: YOUR_KEY \
-H Content-Type: application/json \
-d {model: claude-3-5-sonnet-20241022, messages: [{role: user, content: Hello}]}
认证方式
| 方式 | 使用场景 | 请求头 |
|---|
| API 密钥 | 服务端、智能体、SDK | X-API-Key: ak_... |
| Bearer JWT |
用户会话 | Authorization: Bearer
|
| OAuth2 | 第三方集成 | 标准 OAuth2 流程 |
相关技能
- - ainative-chat-completions — 构建对话式 AI
- ainative-auth-guide — 实现认证功能
- ainative-api-discovery — 探索所有端点
- zerodb-mcp-guide — 使用 76 个数据库/向量工具
- zeromemory-guide — 添加智能体记忆
- ainative-mcp-builder — 构建自定义 MCP 服务器
- ainative-agent-framework — 多智能体系统
- echo-developer-guide — 通过 AI 应用盈利
参考资料
- - API 文档:docs/api/APIREFERENCE.md
- 快速入门:docs/guides/QUICKSTART.md
- 认证指南:docs/guides/AUTHENTICATION.md