npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

atlascloud-mcp

v1.2.1

Published

MCP server for Atlas Cloud - AI API aggregation platform for image/video generation and LLM

Readme

Atlas Cloud MCP Server

English | 中文 | 日本語 | 한국어 | Español | Français

MCP (Model Context Protocol) server for Atlas Cloud — an AI API aggregation platform providing access to image generation, video generation, and LLM models.

Features

  • Documentation Search — Search Atlas Cloud docs, models, and API references directly from your IDE
  • Model Discovery — List and explore 80+ available AI models with pricing and capabilities
  • Image Generation — Generate images using models like Seedream, Qwen-Image, Z-Image, etc.
  • Video Generation — Generate videos using models like Kling, Vidu, Seedance, Wan, etc.
  • LLM Chat — Chat with LLM models (OpenAI-compatible) including GPT, DeepSeek, Qwen, GLM, etc.
  • Dynamic Schema — Automatically fetches each model's parameter schema for accurate API usage

Quick Start

Prerequisites

Configure in Cursor / Claude Desktop

Add to your MCP configuration:

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

Configure in Claude Code

claude mcp add atlascloud -- npx -y atlascloud-mcp

Then set the environment variable ATLASCLOUD_API_KEY in your shell.

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) | | atlas_get_model_info | Get detailed model info including API schema, parameters, and usage examples | | atlas_generate_image | Generate images with any supported image model | | atlas_generate_video | Generate videos with any supported video model | | atlas_chat | Chat with LLM models (OpenAI-compatible format) | | atlas_get_prediction | Check status and result of image/video generation tasks |

Usage Examples

Search for models

"Search Atlas Cloud for video generation models"

The 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

Chat with an LLM

"Ask DeepSeek V3.2 to explain quantum computing"

The assistant will use atlas_chat with the DeepSeek model.

Development

# Install dependencies
npm install

# Build
npm run build

# Run in development mode
npm run dev

License

MIT