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

@simpligen/mcp

v0.1.1

Published

MCP server for SimpliGen -- drive local/cloud AI image & video generation from an agent.

Readme

@simpligen/mcp

MCP server that lets an AI agent drive SimpliGen (local + cloud AI image/video generation). Requires the SimpliGen desktop app running and a pairing token (Settings -> Connect an agent).

Configure (Claude Code / Claude Desktop)

The easiest path is in the SimpliGen app: Settings -> Connect an agent, pick your client, and click Install (or copy the guided command). The manual config below is the fallback.

{
  "mcpServers": {
    "simpligen": {
      "command": "npx",
      "args": ["-y", "@simpligen/mcp"],
      "env": { "SIMPLIGEN_TOKEN": "sg-agent-..." }
    }
  }
}

Tools

list_capabilities, get_status, list_projects, create_project, upload_file, generate, get_job, wait_for_result, list_jobs, cancel_job, prepare_preset, get_result_image.

get_result_image returns a completed job's result image inline (a viewable image block) so the agent can display it in chat. Claude clients cap a tool result at ~1MB and only render base64 image blocks, so large renders are re-encoded to a full-resolution WebP preview (same dimensions; quality steps down, and only very large images are resized) that fits the cap. The uncompressed original file path is always included in the caption, so the agent keeps the full-quality artifact. Video results return the file path instead.

Env

  • SIMPLIGEN_TOKEN (required) -- pairing token from the app.
  • SIMPLIGEN_API_PORT (optional) -- override the control-API port (else read from the app's discovery file).
  • SIMPLIGEN_USERDATA_DIR / SIMPLIGEN_APP_NAME (optional) -- locate the app's data dir (CN variant / custom).

Manual smoke (for maintainers)

With the app running and a token issued:

SIMPLIGEN_TOKEN=<token> npx @modelcontextprotocol/inspector node src/bin.js

Verify: tool list appears; call get_status; call list_capabilities; call upload_file with a PNG path and confirm a handle is returned; call generate with a local preset and confirm a jobId; call wait_for_result and confirm a resultPath; call get_result_image and confirm the image renders inline.