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

@aeriox-co/mcp

v1.0.0

Published

AERIOX MCP server — generate images, video, audio, and stitched compositions from any MCP-compatible agent (Claude Desktop, Cursor, Continue, etc.).

Readme

@aeriox-co/mcp

Package name: @aeriox-co/mcp. CLI command: aeriox-mcp (resolved by npx/npm from the package's bin).

Local MCP (Model Context Protocol) server for the AERIOX public API. Run from any MCP-compatible client — Claude Desktop, Cursor, Continue, VS Code, etc. — to generate images, video, audio, and stitched compositions from your agent.

Install

npm install -g @aeriox-co/mcp
# or use directly without install
npx -y aeriox-mcp

Requires Node.js 20+.

Configuration

aeriox-mcp authenticates via an API key. Get one at https://create.aeriox.co/settings/api-keys.

Set the key in your MCP client config:

Claude Desktop (claude_desktop_config.json)

{
  "mcpServers": {
    "aeriox": {
      "command": "npx",
      "args": ["-y", "aeriox-mcp"],
      "env": {
        "AERIOX_API_KEY": "sk_live_..."
      }
    }
  }
}

Cursor (~/.cursor/mcp.json)

{
  "mcpServers": {
    "aeriox": {
      "command": "npx",
      "args": ["-y", "aeriox-mcp"],
      "env": {
        "AERIOX_API_KEY": "sk_live_..."
      }
    }
  }
}

Continue (~/.continue/config.json)

{
  "experimental": {
    "modelContextProtocolServers": [
      {
        "transport": {
          "type": "stdio",
          "command": "npx",
          "args": ["-y", "aeriox-mcp"]
        }
      }
    ]
  }
}

(Set AERIOX_API_KEY in the parent shell's environment.)

Environment variables

| Var | Required | Default | Purpose | |-----|----------|---------|---------| | AERIOX_API_KEY | yes | — | Your AERIOX API key (sk_live_...) | | AERIOX_BASE_URL | no | https://api.aeriox.co | Override for staging or self-hosted |

Tools (13)

| Tool | Description | |------|-------------| | list_models | List available image/video/audio models with pricing | | get_pricing | Fetch live rate-card pricing | | generate_image | Generate an image from a prompt | | generate_video | Generate a video from a prompt or image | | generate_voice | Synthesize speech from text | | compose_video | Stitch multiple video segments into a single output | | create_character | Train a new character from reference images | | list_characters | List trained characters in your workspace | | list_prisms | List available prism transforms | | apply_prism | Apply a prism to an asset or generation | | get_job_status | Check the status of a queued/running job | | cancel_job | Cancel a running job (refunds reservation) | | get_wallet | Show wallet balance + recent transactions |

Resources (3)

  • aeriox://prisms — Live prism catalog
  • aeriox://characters — Workspace character inventory
  • aeriox://models — Model registry with capabilities

Security notes

  • Never commit your API key to version control. Use environment-variable indirection in your client config where possible.
  • This package transmits your key over HTTPS only (default: https://api.aeriox.co). Override AERIOX_BASE_URL only for staging or self-hosted deployments.
  • All log/error output goes to stderr; stdout is reserved for the MCP JSON-RPC channel.
  • OAuth bearer support and remote SSE transport ship in Phase 5.5.

Development

git clone https://github.com/aeriox/sdk-mcp
cd sdk-mcp
npm install
npm run build
npm test

Links

License

MIT © AERIOX LLC