Skip to main content
Glama
AtlasCloudAI

Atlas Cloud MCP Server (Image / Video / LLM APIs)

by AtlasCloudAI

Supported Models

  • 🎬 Video (174) β€” Seedance 2.0 Mini Β· HappyHorse-1.1 Β· Gemini Omni Flash Β· Avatar Omni Human 1.5 Β· Kling V3.0 Turbo Β· Kling Video O3 4K

  • 🎨 Image (111) β€” Seedream v5.0 Pro Β· Nano Banana 2 Lite Β· MAI-Image-2.5-Flash Β· MAI-Image-2.5

  • 🧊 3D (7) β€” Seed3D 2.0 Β· Hunyuan 3D Rapid Β· Hunyuan 3D Pro Β· Tripo H3.1

  • πŸ’¬ LLM (60) β€” Grok 4.5 Β· Kimi K3 Β· KAT Coder Pro V2.5 Β· KAT Coder Air V2.5

  • πŸ”Š Audio (TTS Β· Music Β· ASR) (19) β€” Seed Audio 1.0 Β· xAI TTS v1 Β· ElevenLabs v3 Β· Gemini 3.1 Flash TTS

  • πŸ“š Explore more β€” all 382 live models Β»

Related MCP server: universal-image-mcp

Contents

What You Can Do

Ask your AI assistant in plain language β€” it discovers the right model, builds the parameters, and submits the job:

  • 🎨 "Make a hero image for this blog post" β€” text-to-image across Nano Banana Pro, GPT Image 2, Flux 2, Seedream, Imagen…

  • 🎬 "Turn this product photo into a 5-second ad" β€” image-to-video with Kling 3, Seedance 2, Veo 3.1, Sora 2…

  • 🧊 "Make a 3D model from this photo" β€” image-to-3D / text-to-3D with Hunyuan 3D (GLB/OBJ/USDZ output)

  • πŸ”Š "Read this script aloud" β€” text-to-speech with Seed Audio, ElevenLabs, xAI TTS

  • 🎡 "Write a theme song for my app" β€” music generation with Suno, MiniMax Music

  • πŸ“ "Transcribe this meeting recording" β€” speech-to-text with Seed ASR, xAI STT

  • 🎞️ "Storyboard this script into 6 shots" β€” chain LLM β†’ image β†’ video inside one conversation

  • ✏️ "Edit this image β€” add a hat" β€” upload a local file, then run an image-editing model

  • πŸ’Έ "How much credit is left, and what did I spend this month?" β€” check balance, usage, and cost breakdowns

  • πŸ’¬ "Summarize this PDF with DeepSeek" β€” OpenAI-compatible LLM chat with Claude, GPT, DeepSeek, Qwen, GLM…

Under the hood: model discovery, dynamic per-model parameter schemas (validated before every request so invalid params fail fast without spending credits), media upload, one-step quick-generate, account balance & usage, and documentation search β€” all exposed as standard MCP tools (see Available Tools).

Quick Start

Prerequisites

See .env.example for the environment variable to set.

CLI agents (one-line install)

The fastest path β€” these AI coding agents add the server with a single command:

# Claude Code
claude mcp add atlascloud -- npx -y atlascloud-mcp

# OpenAI Codex CLI
codex mcp add atlascloud -- npx -y atlascloud-mcp

# Gemini CLI
gemini mcp add atlascloud -- npx -y atlascloud-mcp

# Goose CLI
goose mcp add atlascloud -- npx -y atlascloud-mcp

Set the ATLASCLOUD_API_KEY environment variable in your shell first.

IDEs, editors & extensions (JSON config)

Add this to your client's MCP configuration β€” works with every MCP-compatible client:

{
  "mcpServers": {
    "atlascloud": {
      "command": "npx",
      "args": ["-y", "atlascloud-mcp"],
      "env": {
        "ATLASCLOUD_API_KEY": "your-api-key-here"
      }
    }
  }
}

Client

Where to add it

Cursor

Settings β†’ MCP β†’ Add Server

Cline

MCP Marketplace β†’ Add Server

Continue

config.yaml β†’ MCP

Windsurf

Settings β†’ MCP β†’ Add Server

VS Code (Copilot)

.vscode/mcp.json or Settings β†’ MCP

Trae

Settings β†’ MCP β†’ Add Server

JetBrains IDEs

Settings β†’ Tools β†’ AI Assistant β†’ MCP

ChatGPT Desktop

Settings β†’ MCP

Amazon Q Developer

MCP Configuration

Roo Code

Settings β†’ MCP β†’ Add Server

Prefer Skills?

If you'd rather use Skills than MCP, we also ship an Atlas Cloud Skills package for Claude Code and other skill-compatible agents.

Available Tools

Tool

Description

atlas_search_docs

Search Atlas Cloud documentation and models by keyword

atlas_list_models

List all available models, optionally filtered by type (Text/Image/Video/Audio)

atlas_get_model_info

Get detailed model info including API schema, parameters, and usage examples

atlas_generate_image

Generate images and 3D models (image-to-3D / text-to-3D) with any supported Image model

atlas_generate_video

Generate videos with any supported video model

atlas_generate_audio

Generate audio β€” speech (TTS) and music/songs (Suno, MiniMax Music) β€” with any supported audio model

atlas_transcribe_audio

Transcribe speech to text (ASR) β€” meetings, interviews, voice notes

atlas_quick_generate

One-step image/video/audio generation β€” auto-finds model by keyword, builds params, and submits

atlas_upload_media

Upload local files to get a URL for use with image-edit / image-to-video models

atlas_chat

Chat with LLM models (OpenAI-compatible format)

atlas_get_prediction

Check status and result of image/video/audio/3D generation tasks

atlas_get_balance

Get the account balance and credit summary for your API key

atlas_get_model_usage

Get daily model usage (requests, tokens, image/video counts) over a date range

atlas_get_model_costs

Get daily model cost (spend) buckets over a date range

Usage Examples

Search for models

"Search Atlas Cloud for video generation models"

Your AI assistant will use atlas_search_docs or atlas_list_models to find relevant models.

Generate an image

"Generate an image of a cat in space using Seedream"

The assistant will:

  1. Use atlas_list_models to find Seedream image models

  2. Use atlas_get_model_info to get the model's parameters

  3. Use atlas_generate_image with the correct parameters

Generate a video

"Create a video of a rocket launch using Kling v3"

The assistant will:

  1. Find the Kling video model

  2. Get its schema to understand required parameters

  3. Use atlas_generate_video with appropriate parameters

Upload a local image for editing or video generation

"Edit this image /Users/me/photos/cat.jpg to add a hat"

The assistant will:

  1. Use atlas_upload_media to upload the local file and get a URL

  2. Find an image-editing model

  3. Use atlas_generate_image with the uploaded URL

Note: Uploaded files are for temporary use with Atlas Cloud generation tasks only. Files may be cleaned up periodically. Do not use this as permanent file hosting β€” abuse may result in API key suspension.

Generate speech (TTS)

"Read this sentence aloud with Seed Audio: Welcome to Atlas Cloud"

The assistant will:

  1. Use atlas_list_models with type="Audio" to find the TTS model

  2. Use atlas_generate_audio with the text to synthesize

  3. Use atlas_get_prediction to retrieve the generated audio URL

Generate music

"Make a 30-second upbeat synthwave track for my product demo with Suno"

Music models (Suno Chirp, MiniMax Music) are Audio-type models, so the assistant uses atlas_generate_audio with a song description (and optionally lyrics), then retrieves the audio URL via atlas_get_prediction.

Transcribe audio (speech-to-text)

"Transcribe this interview recording: https://example.com/interview.mp3"

The assistant uses atlas_transcribe_audio with a speech-to-text model (e.g., bytedance/seed-asr-2.0) and the audio_url, then retrieves the transcript via atlas_get_prediction. For local files, it first calls atlas_upload_media to get a URL.

Generate a 3D model

"Turn this product photo into a 3D model with Hunyuan 3D"

3D models are Image-type models, so the assistant uses atlas_generate_image with the image parameter and retrieves a GLB/OBJ/USDZ file via atlas_get_prediction.

Chat with an LLM

"Ask Qwen to explain quantum computing"

The assistant will use atlas_chat with the Qwen model.

Check balance and usage

"How much Atlas Cloud credit do I have left, and what did I spend this month?"

The assistant will use atlas_get_balance for the current balance and atlas_get_model_costs for the spend breakdown.

Development

# Install dependencies
npm install

# Build
npm run build

# Run in development mode
npm run dev

More Atlas Cloud Tools

License

MIT

Install Server
A
license - permissive license
A
quality
B
maintenance

Maintenance

–Maintainers
–Response time
–Release cycle
–Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

View all related MCP servers

Related MCP Connectors

  • MCP server for Google Veo AI video generation

  • MCP server for Wan AI video generation

  • MCP server for Luma Dream Machine AI video generation

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/AtlasCloudAI/mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server