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

@imageupload/mcp

v0.3.0

Published

MCP (Model Context Protocol) server for imageupload.io - lets AI agents upload, organize, and share images.

Readme

@imageupload/mcp

MCP (Model Context Protocol) server for imageupload.io - lets AI agents (Claude Desktop, Cursor, and any MCP-compatible client) upload images and get back share URLs with a single tool call.

Install / use

No global install needed. Every MCP client invokes this package via npx.

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or the equivalent on your OS:

{
  "mcpServers": {
    "imageupload": {
      "command": "npx",
      "args": ["-y", "@imageupload/mcp"],
      "env": {
        "IMAGEUPLOAD_API_KEY": "iu_live_YOUR_KEY_HERE"
      }
    }
  }
}

Get your API key from imageupload.io/dashboard/profile.

Cursor / other MCP clients

Configure an MCP server with:

  • Command: npx
  • Args: -y @imageupload/mcp
  • Env: IMAGEUPLOAD_API_KEY=iu_live_...

Tools

| Tool | Description | |---|---| | upload_image | Upload an image. Accepts path (local file) or data_base64 + filename + mime. | | list_images | List every image you've uploaded. | | get_image | Get metadata for one image by slug. | | delete_image | Delete one of your images. |

upload_image arguments

| Key | Required | Description | |---|---|---| | path | one of | Local file path. MIME/filename are inferred. | | data_base64 | one of | Base64-encoded bytes. Requires filename and mime. | | filename | with data_base64 | Stored filename. | | mime | with data_base64 | One of image/png, image/jpeg, image/webp, image/gif, image/avif. | | expiration | no | 1d (default), 1w, 1mo, burn, views, or forever (Pro only). | | view_limit | when expiration=views | Integer 1–999. | | password | no | Gate the share page with a password. |

Returns a structuredContent object:

{
  "slug": "Ab3f9X2k",
  "share_url": "https://imageupload.io/i/Ab3f9X2k",
  "direct_url": "https://imageupload.io/f/Ab3f9X2k.png",
  "size": 14321,
  "width": 800,
  "height": 600,
  "expires_at": 1775000000
}

Self-hosted endpoint

Point to your own imageupload.io instance:

IMAGEUPLOAD_API_URL=https://images.example.com/mcp \
IMAGEUPLOAD_API_KEY=iu_live_... \
npx -y @imageupload/mcp

Troubleshooting

Run the server directly to see logs on stderr:

IMAGEUPLOAD_API_KEY=iu_live_... npx -y @imageupload/mcp

Then pipe a single initialize request in:

echo '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' | IMAGEUPLOAD_API_KEY=iu_live_... npx -y @imageupload/mcp

License

MIT © imageupload.io