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

@illustmaker/mcp

v1.7.0

Published

MCP server for Illustmaker — browser-based vector graphic editor with 86 automation tools: pathfinder, blend, mask, symbol, print-ready PDF, library templates/parts, BYOK image generation, AI Vision critique, live trace, logo factory, session versioning +

Readme

@illustmaker/mcp

MCP (Model Context Protocol) server for Illustmaker — a free, browser-based vector illustration editor with 38 automation methods.

Use this to drive Illustmaker from Claude Desktop, Cursor, Cline, Windsurf and other MCP-compatible AI agents. Generate logos, mass-export labels, compose OGP images, build catalogs, all by chatting with your AI.

Install

npx -y @illustmaker/mcp

Quick start — Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "illustmaker": {
      "command": "npx",
      "args": ["-y", "@illustmaker/mcp"]
    }
  }
}

Restart Claude Desktop. You should see "illustmaker" listed in the tools menu.

Try: "Create a new 800×600 document and add a red rectangle, then export as SVG."

"failed to connect" on macOS?

Some clients (Claude Code, etc.) spawn subprocesses with a minimal PATH that doesn't include /usr/local/bin/. If you see a connection failure, switch to an absolute path (run which npx to find yours):

{
  "mcpServers": {
    "illustmaker": {
      "command": "/usr/local/bin/npx",
      "args": ["-y", "@illustmaker/mcp"]
    }
  }
}

With an API key (recommended)

The anonymous tier is limited to 30 requests/min and is rate-limited per IP. Get a free API key at /illustmaker/ (Free tier: 100/min).

{
  "mcpServers": {
    "illustmaker": {
      "command": "npx",
      "args": ["-y", "@illustmaker/mcp"],
      "env": {
        "ILLUSTMAKER_API_KEY": "im_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
      }
    }
  }
}

Cursor

.cursor/mcp.json in your project, or ~/.cursor/mcp.json:

{
  "mcpServers": {
    "illustmaker": {
      "command": "npx",
      "args": ["-y", "@illustmaker/mcp"],
      "env": { "ILLUSTMAKER_API_KEY": "im_xxx" }
    }
  }
}

Cline / Windsurf / other

Any MCP client that supports command/args style stdio transport works. Just point it at npx -y @illustmaker/mcp and (optionally) set ILLUSTMAKER_API_KEY in the env.

What it can do

The server exposes 38 tools, named illust_* (e.g. illust_create_session, illust_add_object, illust_export, illust_batch_render …).

| Category | Tools | | --- | --- | | Session | create_session, get_session, duplicate_session, list_sessions, delete_session, copy_objects_to_session | | Object | add_object, add_svg, import_from_url, get_object, update_object, delete_object, duplicate_object | | Layout | group, ungroup, align, set_order | | Text | measure_text, replace_text, set_text_style, outline_text, list_fonts, add_font | | File | save_project, load_project, export (SVG/PNG/JPEG/PDF/AI/JSON) | | Batch | batch_render (up to 1000 variants in one call) | | Suggest | suggest_palette (12 themes), suggest_font (8 use cases), extract_palette | | Meta | health, set_document |

Full reference: https://asi.co.jp/illustmaker/mcp/

Examples

"Make me 100 product labels"

You: I have a CSV of 100 sake products. Make label SVGs for all of them
     using the same template, A4 imposition PDF, 8 per page.
AI : (calls illust_create_session → adds template → illust_batch_render
      with output: "pdf-imposition", imposition: {cols:2, rows:4})
     → returns download URL

"Logo for a sushi shop"

You: Design a logo for a sushi restaurant called "Hanami".
AI : (calls illust_create_session, illust_add_object with ellipse/text,
      illust_suggest_palette theme="和", illust_export format="svg")
     → returns SVG + browser URL for fine-tuning

"Generate OGP for 50 blog posts"

You: Here's a list of 50 article titles. Make OGP images (1200×630) for all.
AI : (template + batch_render with output: "png-zip")
     → ZIP of 50 PNGs

Open the result in the browser

Most operations return an open_url like https://asi.co.jp/illustmaker/?s=abc123 — open it in any browser to fine-tune the result visually. No login required.

Rate limits

| Tier | Limit | | ----- | ----- | | Anonymous (no key) | 30 req/min | | Free API key | 100 req/min | | Pro (contact for upgrade) | 600 req/min |

Sessions are auto-deleted 7 days after their last update.

Security & privacy

  • All session data is stored only on Illustmaker's servers temporarily (7 days)
  • Session URLs are guessable enough to be considered unlisted, not secret — don't send confidential data
  • illust_import_from_url blocks private/loopback/metadata IPs and rejects redirects to defeat SSRF
  • API key, if used, is sent as X-API-Key header over HTTPS
  • See full privacy policy and terms

Programmatic use (without MCP)

If you don't want MCP, just call the HTTP API directly:

curl -X POST https://asi.co.jp/illustmaker/api/mcp.php \
  -H 'Content-Type: application/json' \
  -H 'X-API-Key: im_xxxxxxxx' \
  -d '{"method":"illust.create_session","params":{"width":800,"height":600}}'

License

MIT © ASI Inc.

Links