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

userdelphi-mcp

v0.1.0

Published

MCP server for UserDelphi — order user-research studies and read insights from Claude Code, Cursor, Codex, or any MCP client.

Readme

UserDelphi MCP server

Order user-research studies and read insights from inside Claude Code (or any MCP client). It wraps the UserDelphi REST API — the magic loop:

"I just deployed this preview — run a study on it and tell me what's broken."

Tools

| Tool | What it does | |------|--------------| | connect / connect_poll | Link this editor to your workspace via a browser approval — no key to copy. | | launch_study | Order a prototype-feedback study (name, prototype_url, questions, participants, mode). Returns study_id, share_url, report_url. | | instant_feedback | Run (or add more) AI-persona feedback on an existing study, now. | | list_studies | List your studies with status + report URLs. | | get_study_report | The synthesised insight (the one thing to do, top issues, themes) + per-session analyses. |

Two modes

  • mode: "live" (default) — real people. Recruiting is handled separately (a panel / your internal test pool); you get a share_url to put in front of testers and poll report_url as sessions land.
  • mode: "instant" — a panel of AI personas explores the prototype right now, thinks aloud, and answers your questions. The report is populated before launch_study returns (~a minute). It's a directional preview, clearly labelled synthetic — not a substitute for real users. Great for a first read before you spend real testers. The report's counts break out synthetic_sessions vs real_sessions, and each session has is_synthetic.

You can mix both: launch instant for an immediate read, then share the same share_url to layer real human sessions onto the same report.

Setup (zero-config)

Nothing to clone or install — it runs straight from npm via npx. No key to copy.

  1. Add it to Claude Code (no UD_API_KEY):

    claude mcp add userdelphi -s user \
      --env UD_BASE_URL=https://your-userdelphi-app \
      -- npx -y userdelphi-mcp

    For local dev, UD_BASE_URL=http://localhost:3000. -s user registers it for all your projects.

    Cursor / Codex (mcp.json):

    {
      "mcpServers": {
        "userdelphi": {
          "command": "npx",
          "args": ["-y", "userdelphi-mcp"],
          "env": { "UD_BASE_URL": "https://your-userdelphi-app" }
        }
      }
    }
  2. Connect from the editor. Ask the agent:

    "Connect to UserDelphi."

    It runs the connect tool, which prints a short code and a URL. Open the URL, sign in, approve the code — the key is minted and saved to ~/.userdelphi/credentials.json. The agent calls connect_poll to finish. Done; every other tool now works.

    Prefer a terminal? npx -y -p userdelphi-mcp userdelphi-connect (set UD_BASE_URL first).

Or set a key explicitly

If you'd rather manage the key yourself: in the app, Settings → API keys → create one (ud_live_..., shown once), then pass it as --env UD_API_KEY=ud_live_xxxxx (or in ~/.claude.json / a project .mcp.json). An explicit UD_API_KEY always takes precedence over a saved one.

From source (contributors)

Working on the server itself? Run it from the repo instead of npm:

cd mcp && npm install
claude mcp add userdelphi -s user \
  --env UD_BASE_URL=http://localhost:3000 \
  -- node /absolute/path/to/mcp/server.mjs

Use

In Claude Code, just ask:

"Launch a UserDelphi study called 'Onboarding v2' on https://my-preview.vercel.app, ask testers what confused them and whether the pricing was clear."

Then later:

"Pull the UserDelphi report for that study — what's the top issue?"

Roadmap (see docs/dev-platform-plan.md)

  • Scoped keys (studies:read vs studies:launch) + ud_test_ dry-run keys.
  • A company budget / credits model with per-developer caps + spend holds.
  • Push notifications when synthesis completes.
  • GitHub/Vercel preview-deploy integration (auto-study every PR).