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

@sanity-labs/canvas-mcp-bridge

v0.1.0

Published

Org-free stdio MCP facade for the Sanity Canvas CRUD API. Resolves the user's Canvas resource from a bearer token and forwards JSON-RPC to the per-resource HTTP MCP. Run via `npx @sanity-labs/canvas-mcp-bridge`.

Readme

@sanity-labs/canvas-mcp-bridge

Org-free stdio MCP facade for the Sanity Canvas CRUD API. Point your MCP client at npx @sanity-labs/canvas-mcp-bridge, give it a CANVAS_TOKEN, and which organization to work in is resolved at runtime through conversation — not config.

Usage

Claude Code

claude mcp add canvas npx -- -y @sanity-labs/canvas-mcp-bridge \
  -e CANVAS_TOKEN=sk-...

Cursor / Windsurf / any stdio MCP client (mcp.json)

{
  "mcpServers": {
    "canvas": {
      "command": "npx",
      "args": ["-y", "@sanity-labs/canvas-mcp-bridge"],
      "env": { "CANVAS_TOKEN": "sk-..." }
    }
  }
}

How it picks the organization

On startup the bridge lists the orgs your token has Canvas access in:

  • One org with a canvas → auto-pinned; you go straight to the full toolset.
  • More than one → picker mode: only canvas_list_orgs + canvas_use_org are exposed. The LLM asks which org you mean, you tell it, it pins that org's canvas, and the full Canvas CRUD toolset appears. You never deal with canvas resource IDs — the bridge owns that translation.

Configuration

| Env var | Required | Default | What it does | | --- | --- | --- | --- | | CANVAS_TOKEN | yes | — | Sanity user token (from the dashboard's personal tokens). Forwarded verbatim; preserves your identity for attribution. NOT a project (sk…) robot token. | | CANVAS_API_BASE | no | https://api.sanity.work (staging) | Sanity API gateway. Set to https://api.sanity.io for production. | | SANITY_API_BASE | no | https://api.sanity.work/v2025-02-19 | API base used for org/canvas discovery. | | CANVAS_ORGANIZATION_ID | no | — | Escape hatch: skip the picker, pin this org's canvas. | | CANVAS_RESOURCE_ID | no | — | Escape hatch: skip discovery entirely, pin this canvas resource. |

Status

Experimental. The upstream Canvas CRUD MCP it fronts is gated behind a feature flag (staging today). Don't assume the wire format is stable.

Full docs, architecture, and release process: https://github.com/sanity-labs/canvas-mcp-bridge#readme