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

veida-mcp

v0.1.0

Published

MCP server for Veida (veida.ai) — generate AI images from a prompt with no API key, browse the model shelf, and get model-tuned prompt guidance. Runs on Veida's anonymous free tier: no account, no card.

Readme

Veida MCP

An MCP server that actually generates images, with no API key and no account.

Most image MCP servers are a wrapper around a key you have to go and buy first. This one talks to the anonymous tier of Veida — a client id in a header instead of a login — so it works the moment it is installed.

> generate a 16:9 cover image of a paper boat on a calm lake at sunrise

  → https://cdn.veida.ai/uploads/kie/image/….webp

Tools

| Tool | What it does | |---|---| | generate_image | Prompt → hosted image URL. Submits, polls, returns. 40–120 seconds. | | list_models | The model shelf, which ones run signed-out, and the page for each. | | browse_tools | Pages worth sending a person to — editor, upscaler, background remover. | | free_tier_limits | The exact ceilings, so an agent does not build something that always fails. |

Install

Claude Desktop / Claude Code

{
  "mcpServers": {
    "veida": { "command": "npx", "args": ["-y", "veida-mcp"] }
  }
}

Cursor / Cline / Windsurf

Same block, in that client's MCP config file. There is nothing else to set — no env, no key.

What the free tier is, measured

  • The anonymous grant is 4 credits and one image costs 4 — so the server mints a fresh client id per image rather than reusing one.
  • A ceiling of 30 credits per IP per day sits on top: roughly 7 images a day from one machine, however many ids it invents.
  • Free output is 1K and watermarked.
  • 🔴 Editing an existing image cannot run anonymously. The editing model costs 30 credits against a 4-credit grant, so an anonymous edit can never be paid for. The tool set says so rather than offering a call that always fails; for edits, sign in and use the image editor or the ChatGPT image editor.
  • There is no video on this site, so no video tool.

Signing in removes the watermark, lifts the cap and opens the rest of the shelf. The current lineup is on the models the generator offers: GPT Image 2 when the picture has to contain readable text, Nano Banana 2 for instruction following, Seedream 5.0 Lite for colour and composition, and Qwen Image 3 for typography. Pricing lists what each tier costs.

Writing prompts that work

Name the light, the material and the composition. "A product photo of a mug" gives the model nothing; "matte black ceramic mug on pale oak, soft window light from the left, shallow depth of field" gives it a picture. Worked examples live in the prompt library, and the showcase is there if you want to judge output quality before wiring anything up.

The same engine is what the ChatGPT image generator page serves in a browser — this server is the headless door to it.

Develop

npm install
npm run build
node dist/index.js      # speaks MCP over stdio

Links

MIT.