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

@arcsite/gallery-mcp

v0.2.1

Published

MCP server for publishing HTML/Markdown artifacts to ArcSite's internal gallery

Readme

@arcsite/gallery-mcp

MCP server that publishes HTML or Markdown artifacts to ArcSite's internal Artifacts Gallery. Intended for coding agents (Claude Code, Cursor, Windsurf, …) so they can hand off a one-page deliverable without the user having to drag a file into a browser.

Per [ADR-0005](https://gallery.arcsite.com — see the gallery repo's docs/adr/0005-mcp-for-agent-uploads.md), the MCP authenticates with a long-lived API Token the Author generates once and pastes into their MCP client config.

Install

The MCP is published on public npm and the conventional install path is npx -y — no manual install needed.

Configure your MCP client

1. Generate a token

  1. Open https://gallery.arcsite.com/settings/tokens.
  2. Sign in with your @arcsite.com account if you aren't already.
  3. Click Generate, give the token a label (e.g. MacBook · Claude Code), and copy the plaintext immediately — it's shown exactly once. The token starts with agk_.

2. Add to .mcp.json

Example for Claude Code:

{
  "mcpServers": {
    "arcsite-gallery": {
      "command": "npx",
      "args": ["-y", "@arcsite/gallery-mcp"],
      "env": {
        "ARCSITE_GALLERY_TOKEN": "agk_..."
      }
    }
  }
}

ARCSITE_GALLERY_URL is optional and defaults to https://gallery.arcsite.com. Override it to point at staging or a dev instance.

Tool: publish_artifact

| Field | Required | Notes | |---|---|---| | path | yes | Absolute or relative path to the .html / .md file. | | title | yes | 1–200 chars. | | description | no | ≤4000 chars. Shown in link previews. | | visibility | no | "team" (default) or "public". |

Returns { slug, url, revision: 1 }. The agent can paste url into chat.

The 5 MB per-file cap is enforced both locally and server-side; the kind (HTML vs Markdown) is auto-detected from the extension and locked at publish time.

Tool: publish_revision

Upload a new revision of an existing artifact. The canonical URL (gallery.arcsite.com/a/<slug>) is unchanged; the latest pointer flips to the new revision. Use this when iterating on an artifact you just published in the same session — the agent typically still has the slug in context from the prior publish_artifact return value.

| Field | Required | Notes | |---|---|---| | slug | yes | The slug returned by a prior publish_artifact. | | path | yes | New file. Must be the same kind (.html / .md) as the original. |

Returns { slug, url, revision } where revision is the new revision number (2 on the first revise, then 3+).

Common 4xx responses are surfaced with intent-preserving messages:

  • 404artifact "<slug>" not found
  • 403you are not the author of artifact "<slug>"
  • 410artifact "<slug>" has been deleted; cannot revise
  • 409this artifact is html; uploaded file looks like markdown (kind mismatch — Artifact kind is locked at publish time and a revision must match)

Title / description / visibility edits are NOT part of this tool — those remain web-UI actions on the artifact's page.

Troubleshooting

  • gallery-mcp: auth check failed: token rejected (401) — the token is malformed, revoked, or for a different host. Generate a new one.
  • Tool description includes [NOT AUTHENTICATED] — the eager startup health check failed; the server still started so the agent can see what's wrong. Same fix as above.

License

Internal. Do not redistribute outside ArcSite.