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

@just-every/design

v0.1.36

Published

MCP stdio server for design.justevery.com (Design App API)

Readme

@just-every/design

MCP (Model Context Protocol) stdio server that proxies the Design App API (default: https://design.justevery.com) so MCP clients can create, sync, and check design runs.

Quick start

The recommended path is to run the guided installer once. It will:

  • Authenticate you (if needed)
  • Install a local every-design launcher (no npx required after)
  • Configure detected MCP clients (and install Skills where supported)
npx -y @just-every/design@latest install

After install, you can use every-design directly.

Authenticate

Login once (interactive approval-link flow):

every-design auth login

If you do not have every-design on PATH yet, you can always run:

npx -y @just-every/design@latest auth login

If your user belongs to multiple organizations, this will prompt you to pick one. To skip the prompt, pass --account <slug>.

Run as an MCP server (stdio)

every-design

Fallback (no local install):

npx -y @just-every/design@latest

Install into common MCP clients

This writes MCP server config entries for detected clients (Claude Desktop, Cursor, Gemini CLI, Qwen Code, Codex, and Every Code), and installs a small local playbook “skill” where supported.

npx -y @just-every/design@latest install

By default, install will prefer a local launcher and attempt to ensure ~/.local/bin is on your PATH. To skip modifying shell config files:

npx -y @just-every/design@latest install --no-path

To force-install into all supported clients:

npx -y @just-every/design@latest install --client all --yes

Non-interactive (skip auth login, leave existing auth untouched):

npx -y @just-every/design@latest install --client all --yes --skip-auth

To remove the MCP server + playbook skill from detected clients:

npx -y @just-every/design@latest remove

Claude Desktop config example

{
  "mcpServers": {
    "every-design": {
      "command": "/absolute/path/to/every-design",
      "args": []
    }
  }
}

Tip: GUI apps may not inherit your shell PATH, so an absolute path is recommended.

Authentication (recommended)

This package uses the JustEvery login approval-link flow:

  • It creates an approval request via POST /api/auth/m2m/approval-requests.
  • You click a single approval URL in your browser.
  • The CLI polls, receives a short-lived bearer token, then exchanges it for a Better Auth session token via POST /api/auth/m2m/session.
  • The session token is stored locally and used as better-auth.session_token for API calls.

This avoids needing long-lived client secrets and is the lowest-friction path for humans.

Configuration

Config file

  • Default path: $XDG_CONFIG_HOME/just-every/every-design/mcp.json (or ~/.config/just-every/every-design/mcp.json)
  • Override: DESIGN_MCP_CONFIG_PATH=/path/to/mcp.json

Environment variables

  • DESIGN_MCP_ORIGIN (default: https://design.justevery.com)
  • LOGIN_ORIGIN (default: https://login.justevery.com)
  • DESIGN_MCP_SESSION_TOKEN (bypass config)
  • DESIGN_MCP_ACCOUNT_SLUG (optional; otherwise chosen from /api/accounts)

MCP tools

CLIs MUST follow this order when creating a user interface or visual element: design.createdesign.syncdesign.check.

Available tools:

  • design.create — Create a new design. Returns run id.
  • design.sync — Wait for completion, extract assets, and sync to a folder (can take up to 30 mins).
  • design.check — Capture a screenshot and return guidance; accepts URL or local HTML file path.
  • design.instructions — Return the required workflow instructions for CLIs.