Loading...
Loading...
Compare original and translation side by side
export ATLASCLOUD_API_KEY="your-api-key-here"export ATLASCLOUD_API_KEY="your-api-key-here"| Endpoint | Base URL | Purpose |
|---|---|---|
| Media Generation API | | Image generation, video generation, poll results, upload media |
| LLM API | | Chat completions (OpenAI-compatible) |
Authorization: Bearer $ATLASCLOUD_API_KEY
Content-Type: application/json| 端点 | 基础URL | 用途 |
|---|---|---|
| 媒体生成API | | 图像生成、视频生成、查询结果、上传媒体 |
| LLM API | | 对话补全(兼容OpenAI) |
Authorization: Bearer $ATLASCLOUD_API_KEY
Content-Type: application/json| Method | Endpoint | Description |
|---|---|---|
| | Submit image generation task |
| | Submit video generation task |
| | Check generation task status and result |
| | Upload local media file to get a public URL |
| | LLM chat (OpenAI-compatible format) |
| | List all available models (no auth required) |
| 方法 | 端点 | 描述 |
|---|---|---|
| | 提交图像生成任务 |
| | 提交视频生成任务 |
| | 检查生成任务状态及结果 |
| | 上传本地媒体文件以获取公共URL |
| | LLM对话(兼容OpenAI格式) |
| | 列出所有可用模型(无需认证) |
npx atlascloud-mcpnpx atlascloud-mcpatlas_list_modelsatlas_list_modelstype"Text""Image""Video"type="Image"type"Text""Image""Video"type="Image"atlas_search_docsatlas_search_docsquery"video generation""deepseek""image edit""qwen"query"video generation""deepseek""image edit""qwen"atlas_get_model_infoatlas_get_model_infomodel"deepseek-ai/deepseek-v3.2"model="deepseek-ai/deepseek-v3.2"model"deepseek-ai/deepseek-v3.2"model="deepseek-ai/deepseek-v3.2"atlas_generate_imageatlas_generate_imagemodelparamspromptimage_sizeatlas_list_modelsatlas_search_docsatlas_get_predictionmodelparamspromptimage_sizeatlas_list_modelsatlas_search_docsatlas_get_predictionatlas_generate_videoatlas_generate_videomodelparamspromptdurationaspect_ratioimage_urlmodelparamspromptdurationaspect_ratioimage_urlatlas_quick_generateatlas_quick_generatemodel_keyword"nano banana""seedream""kling v3"type"Image""Video"promptimage_urlextra_paramsmodel_keyword="seedream v5", type="Image", prompt="a cute cat"model_keyword"nano banana""seedream""kling v3"type"Image""Video"promptimage_urlextra_paramsmodel_keyword="seedream v5", type="Image", prompt="a cute cat"atlas_chatatlas_chatmodelmessagesrolecontenttemperaturemax_tokenstop_pmodelmessagesrolecontenttemperaturemax_tokenstop_patlas_get_predictionatlas_get_predictionprediction_idstartingprocessingcompletedsucceededfailedprediction_idstartingprocessingcompletedsucceededfailedatlas_upload_mediaatlas_upload_mediafile_pathimage_urlimage_urlatlas_generate_imageatlas_generate_videoatlas_quick_generatefile_pathimage_urlimage_urlatlas_generate_imageatlas_generate_videoatlas_quick_generatePOST https://api.atlascloud.ai/api/v1/model/generateImage{
"model": "bytedance/seedream-v5.0-lite",
"prompt": "A beautiful sunset over mountains",
"image_size": "1024x1024"
}{
"code": 200,
"data": {
"id": "prediction_abc123",
"status": "starting"
}
}promptimage_sizewidthheightnum_inference_stepsguidance_scaleimage_urlPOST https://api.atlascloud.ai/api/v1/model/generateImage{
"model": "bytedance/seedream-v5.0-lite",
"prompt": "A beautiful sunset over mountains",
"image_size": "1024x1024"
}{
"code": 200,
"data": {
"id": "prediction_abc123",
"status": "starting"
}
}promptimage_sizewidthheightnum_inference_stepsguidance_scaleimage_urlGET https://api.atlascloud.ai/api/v1/model/prediction/{prediction_id}{
"code": 200,
"data": {
"id": "prediction_abc123",
"status": "completed",
"outputs": ["https://cdn.atlascloud.ai/generated/xxx.png"]
}
}statusstartingprocessingcompletedfailedGET https://api.atlascloud.ai/api/v1/model/prediction/{prediction_id}{
"code": 200,
"data": {
"id": "prediction_abc123",
"status": "completed",
"outputs": ["https://cdn.atlascloud.ai/generated/xxx.png"]
}
}statusstartingprocessingcompletedfailedPOST https://api.atlascloud.ai/api/v1/model/generateVideo{
"model": "kwaivgi/kling-v3.0-std/text-to-video",
"prompt": "A rocket launching into space",
"duration": 5,
"aspect_ratio": "16:9"
}promptimage_urldurationaspect_ratio"16:9""9:16""1:1"POST https://api.atlascloud.ai/api/v1/model/generateVideo{
"model": "kwaivgi/kling-v3.0-std/text-to-video",
"prompt": "A rocket launching into space",
"duration": 5,
"aspect_ratio": "16:9"
}promptimage_urldurationaspect_ratio"16:9""9:16""1:1"image_urlimage_urlPOST https://api.atlascloud.ai/api/v1/model/uploadMedia
Content-Type: multipart/form-data
Authorization: Bearer $ATLASCLOUD_API_KEYfile{
"code": 200,
"data": {
"download_url": "https://atlas-img.oss-accelerate-overseas.aliyuncs.com/media/xxx.jpg",
"filename": "photo.jpg",
"size": 123456
}
}POST https://api.atlascloud.ai/api/v1/model/uploadMedia
Content-Type: multipart/form-data
Authorization: Bearer $ATLASCLOUD_API_KEYfile{
"code": 200,
"data": {
"download_url": "https://atlas-img.oss-accelerate-overseas.aliyuncs.com/media/xxx.jpg",
"filename": "photo.jpg",
"size": 123456
}
}image_urlimage_urlPOST https://api.atlascloud.ai/v1/chat/completions{
"model": "qwen/qwen3.5-397b-a17b",
"messages": [
{"role": "system", "content": "You are a helpful assistant"},
{"role": "user", "content": "Hello!"}
],
"max_tokens": 1024,
"temperature": 0.7,
"stream": false
}{
"id": "chatcmpl-xxx",
"model": "qwen/qwen3.5-397b-a17b",
"choices": [{
"index": 0,
"message": {"role": "assistant", "content": "Hello! How can I help?"},
"finish_reason": "stop"
}],
"usage": {
"prompt_tokens": 20,
"completion_tokens": 8,
"total_tokens": 28
}
}POST https://api.atlascloud.ai/v1/chat/completions{
"model": "qwen/qwen3.5-397b-a17b",
"messages": [
{"role": "system", "content": "You are a helpful assistant"},
{"role": "user", "content": "Hello!"}
],
"max_tokens": 1024,
"temperature": 0.7,
"stream": false
}{
"id": "chatcmpl-xxx",
"model": "qwen/qwen3.5-397b-a17b",
"choices": [{
"index": 0,
"message": {"role": "assistant", "content": "Hello! How can I help?"},
"finish_reason": "stop"
}],
"usage": {
"prompt_tokens": 20,
"completion_tokens": 8,
"total_tokens": 28
}
}from openai import OpenAI
client = OpenAI(
api_key="your-atlascloud-api-key",
base_url="https://api.atlascloud.ai/v1"
)
response = client.chat.completions.create(
model="qwen/qwen3.5-397b-a17b",
messages=[{"role": "user", "content": "Hello!"}],
max_tokens=1024
)
print(response.choices[0].message.content)import OpenAI from 'openai';
const client = new OpenAI({
apiKey: 'your-atlascloud-api-key',
baseURL: 'https://api.atlascloud.ai/v1',
});
const response = await client.chat.completions.create({
model: 'qwen/qwen3.5-397b-a17b',
messages: [{ role: 'user', content: 'Hello!' }],
max_tokens: 1024,
});
console.log(response.choices[0].message.content);from openai import OpenAI
client = OpenAI(
api_key="your-atlascloud-api-key",
base_url="https://api.atlascloud.ai/v1"
)
response = client.chat.completions.create(
model="qwen/qwen3.5-397b-a17b",
messages=[{"role": "user", "content": "Hello!"}],
max_tokens=1024
)
print(response.choices[0].message.content)import OpenAI from 'openai';
const client = new OpenAI({
apiKey: 'your-atlascloud-api-key',
baseURL: 'https://api.atlascloud.ai/v1',
});
const response = await client.chat.completions.create({
model: 'qwen/qwen3.5-397b-a17b',
messages: [{ role: 'user', content: 'Hello!' }],
max_tokens: 1024,
});
console.log(response.choices[0].message.content);references/image-gen.mdreferences/video-gen.mdreferences/llm-chat.mdreferences/upload.mdreferences/quick-generate.mdreferences/models.mdreferences/image-gen.mdreferences/video-gen.mdreferences/llm-chat.mdreferences/upload.mdreferences/quick-generate.mdreferences/models.mdGET https://api.atlascloud.ai/api/v1/modelsdisplay_console: truedisplay_consolefalseGET https://api.atlascloud.ai/api/v1/modelsdisplay_console: truedisplay_consolefalse| Model ID | Name | Price |
|---|---|---|
| Nano Banana 2 Text-to-Image | $0.072/image |
| Nano Banana 2 Developer | $0.056/image |
| Nano Banana 2 Edit | $0.072/image |
| Seedream v5.0 Lite | $0.032/image |
| Seedream v5.0 Lite Edit | $0.032/image |
| Qwen-Image Edit Plus | $0.021/image |
| Z-Image Turbo | $0.01/image |
| 模型ID | 名称 | 价格 |
|---|---|---|
| Nano Banana 2 文生图 | $0.072/张 |
| Nano Banana 2 开发者版 | $0.056/张 |
| Nano Banana 2 图像编辑 | $0.072/张 |
| Seedream v5.0 Lite | $0.032/张 |
| Seedream v5.0 Lite 图像编辑 | $0.032/张 |
| Qwen-Image 高级编辑 | $0.021/张 |
| Z-Image Turbo | $0.01/张 |
| Model ID | Name | Price |
|---|---|---|
| Kling v3.0 Std Text-to-Video | $0.153/gen |
| Kling v3.0 Std Image-to-Video | $0.153/gen |
| Kling v3.0 Pro Text-to-Video | $0.204/gen |
| Kling v3.0 Pro Image-to-Video | $0.204/gen |
| Seedance v1.5 Pro Text-to-Video | $0.222/gen |
| Seedance v1.5 Pro Image-to-Video | $0.222/gen |
| Vidu Q3 Text-to-Video | $0.06/gen |
| Vidu Q3 Image-to-Video | $0.06/gen |
| Wan-2.6 Image-to-Video | $0.07/gen |
| 模型ID | 名称 | 价格 |
|---|---|---|
| Kling v3.0 标准版 文生视频 | $0.153/次 |
| Kling v3.0 标准版 图生视频 | $0.153/次 |
| Kling v3.0 专业版 文生视频 | $0.204/次 |
| Kling v3.0 专业版 图生视频 | $0.204/次 |
| Seedance v1.5 专业版 文生视频 | $0.222/次 |
| Seedance v1.5 专业版 图生视频 | $0.222/次 |
| Vidu Q3 文生视频 | $0.06/次 |
| Vidu Q3 图生视频 | $0.06/次 |
| Wan-2.6 图生视频 | $0.07/次 |
| Model ID | Name | Input | Output |
|---|---|---|---|
| Qwen3.5 397B A17B | $0.55/M | $3.5/M |
| Qwen3.5 122B A10B | $0.3/M | $2.4/M |
| Kimi K2.5 | $0.5/M | $2.6/M |
| GLM 5 | $0.95/M | $3.15/M |
| MiniMax M2.5 | $0.295/M | $1.2/M |
| DeepSeek V3.2 Speciale | $0.4/M | $1.2/M |
| Qwen3 Coder Next | $0.18/M | $1.35/M |
GET https://api.atlascloud.ai/api/v1/models| 模型ID | 名称 | 输入 | 输出 |
|---|---|---|---|
| Qwen3.5 397B A17B | $0.55/百万令牌 | $3.5/百万令牌 |
| Qwen3.5 122B A10B | $0.3/百万令牌 | $2.4/百万令牌 |
| Kimi K2.5 | $0.5/百万令牌 | $2.6/百万令牌 |
| GLM 5 | $0.95/百万令牌 | $3.15/百万令牌 |
| MiniMax M2.5 | $0.295/百万令牌 | $1.2/百万令牌 |
| DeepSeek V3.2 Speciale | $0.4/百万令牌 | $1.2/百万令牌 |
| Qwen3 Coder Next | $0.18/百万令牌 | $1.35/百万令牌 |
GET https://api.atlascloud.ai/api/v1/models| HTTP Status | Meaning | Suggested Action |
|---|---|---|
| 401 | Invalid or expired API Key | Check ATLASCLOUD_API_KEY |
| 402 | Insufficient balance | Top up at Billing Page |
| 429 | Rate limited | Wait and retry with exponential backoff |
| 5xx | Server error | Wait and retry |
| HTTP状态码 | 含义 | 建议操作 |
|---|---|---|
| 401 | API密钥无效或过期 | 检查ATLASCLOUD_API_KEY |
| 402 | 余额不足 | 在账单页面充值 |
| 429 | 请求频率超限 | 等待后重试,使用指数退避策略 |
| 5xx | 服务器错误 | 等待后重试 |
undefinedundefined
> For CLI tools, make sure to set the `ATLASCLOUD_API_KEY` environment variable in your shell:
> ```bash
> export ATLASCLOUD_API_KEY="your-api-key-here"
> ```
> 对于CLI工具,请确保在shell中设置`ATLASCLOUD_API_KEY`环境变量:
> ```bash
> export ATLASCLOUD_API_KEY="your-api-key-here"
> ```{
"mcpServers": {
"atlascloud": {
"command": "npx",
"args": ["-y", "atlascloud-mcp"],
"env": {
"ATLASCLOUD_API_KEY": "your-api-key-here"
}
}
}
}| Client | Config Location |
|---|---|
| Cursor | Settings → MCP → Add Server |
| Windsurf | Settings → MCP → Add Server |
| VS Code (Copilot) | |
| Trae | Settings → MCP → Add Server |
| Zed | Settings → MCP |
| JetBrains IDEs | Settings → Tools → AI Assistant → MCP |
| Claude Desktop | |
| ChatGPT Desktop | Settings → MCP |
| Amazon Q Developer | MCP Configuration |
{
"mcpServers": {
"atlascloud": {
"command": "npx",
"args": ["-y", "atlascloud-mcp"],
"env": {
"ATLASCLOUD_API_KEY": "your-api-key-here"
}
}
}
}| 客户端 | 配置位置 |
|---|---|
| Cursor | 设置 → MCP → 添加服务器 |
| Windsurf | 设置 → MCP → 添加服务器 |
| VS Code (Copilot) | |
| Trae | 设置 → MCP → 添加服务器 |
| Zed | 设置 → MCP |
| JetBrains IDEs | 设置 → 工具 → AI助手 → MCP |
| Claude Desktop | |
| ChatGPT Desktop | 设置 → MCP |
| Amazon Q Developer | MCP配置 |
npx skills add AtlasCloudAI/atlas-cloud-skillsnpx skills add AtlasCloudAI/atlas-cloud-skills