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

gliana-ai-mcp

v0.4.6

Published

MCP server for GlianaAI — pay-per-call generative AI across 59 models (image, video, music, speech). No signup or API key; each generate is paid per call from your own wallet over MPP / x402.

Readme

GlianaAI MCP server

Pay-per-call generative AI for any MCP client (Claude Desktop, Cursor, …). 70+ models — image, video, video editing, music, speech — with no signup and no API key. Each generate is paid per call from your own wallet over MPP / x402.

  • Browse + price models for free (list_models, get_price, get_schema).
  • generate runs a model and settles the gateway's 402 from your wallet (USDC on Base). Your private key is read from the client config and never leaves your machine — non-custodial, same model as ai.glianalabs.com.

Tools

| Tool | Paid? | Description | |------|-------|-------------| | list_models | free | Every model: id, category, provider, per-call price. | | get_price | free | Exact cost of one call (input affects it — video duration, TTS length). | | get_schema | free | A model's input fields (required, defaults). | | generate | paid | Run a model → media URL. Pays from your wallet. |

File inputs

Models that take a source file (image-to-video, video-to-video, transcription) accept a public URL in their file field (e.g. image, video_uri). Have a local file? Upload it first — no key, no payment:

curl -X POST https://api.glianalabs.com/v1/media \
  -H "content-type: video/mp4" --data-binary @clip.mp4
# → { "url": "https://api.glianalabs.com/v1/media/<id>.mp4" }

Pass the returned url into the model field. Max 40 MB; video / image / audio only.

Install

Add to your MCP client config.

Claude Desktop (claude_desktop_config.json) / Cursor (~/.cursor/mcp.json):

{
  "mcpServers": {
    "gliana-ai": {
      "command": "npx",
      "args": ["-y", "gliana-ai-mcp"],
      "env": {
        "GLIANA_WALLET_KEY": "0xYOUR_EVM_PRIVATE_KEY"
      }
    }
  }
}

Payment rails

generate settles the gateway's 402 from your wallet. Pick a rail and set its key:

| Rail | Env var | Wallet needs | |------|---------|--------------| | base (default) | GLIANA_WALLET_KEY (0x EVM key) | USDC on Base — gasless EIP-3009 signature | | tempo | GLIANA_WALLET_KEY (same 0x key) | USDC on Tempo | | solana | GLIANA_SOLANA_KEY (base58 or JSON-array secret key) | USDC on Solana |

  • GLIANA_RAILbase | tempo | solana. Optional; defaults to base (or solana if only a Solana key is set). The wallet must hold USDC on that chain.
  • GLIANA_API_URL — optional, defaults to https://api.glianalabs.com.

Keys are needed only for generate; the discovery tools work without any.

Restart the client. Ask it to "list GlianaAI models" or "generate an image of a red fox with nano-banana-2".

Funding

Fund the wallet with a few dollars of USDC on your chosen chain (Base, Tempo, or Solana). You pay only the per-call price (see get_price); there's no subscription and no balance held by us.

Use a dedicated low-balance wallet for agents. Never paste your main wallet's key into any config.

Links

  • Website: https://ai.glianalabs.com
  • API docs: https://ai.glianalabs.com/docs
  • Discoverable on mppscan and x402scan

MIT © Gliana Labs