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

@paramxclaudedev/vercel-mcp

v0.1.0

Published

MCP server for the Vercel REST API. Deployments, projects, domains, env vars, build logs.

Readme

vercel-mcp-server

MCP server for the Vercel REST API. Lets Claude inspect deployments, manage projects, attach domains, set env vars, and read build logs without leaving the chat.

Tools

| Tool | What it does | Side effects | | ------------------------------ | -------------------------------------------------------------- | ------------------------ | | vercel_list_deployments | List deployments (filter by project, target, time) | none | | vercel_get_deployment | Single deployment details by ID or URL | none | | vercel_get_deployment_logs | Build + runtime logs | none | | vercel_cancel_deployment | Cancel an in-progress deployment | stops build | | vercel_delete_deployment | Delete a deployment (dry-run unless confirm) | irreversible (confirmed) | | vercel_list_projects | List projects | none | | vercel_get_project | Project details | none | | vercel_list_project_domains | Domains attached to project | none | | vercel_add_project_domain | Attach a custom domain | DNS still required | | vercel_remove_project_domain | Unlink a custom domain (registration not deleted) | unlinks | | vercel_list_env_vars | List env vars (decrypt opt-in) | none | | vercel_create_env_var | Create / upsert env var | env change | | vercel_delete_env_var | Delete env var by ID | env change | | vercel_promote_to_production | Alias prod domains at a specific deployment (instant rollback) | prod alias change | | vercel_list_aliases | List project aliases | none |

Setup

  1. Generate a personal access token at https://vercel.com/account/tokens.
  2. Optional: grab your team ID from team settings if you want to scope to a team rather than personal.
  3. Install:
    pnpm install
    pnpm build
  4. Add to your Claude Code MCP config (~/.claude.json):
    "mcpServers": {
      "vercel": {
        "command": "node",
        "args": ["/absolute/path/to/vercel-mcp/dist/index.js"],
        "env": {
          "VERCEL_TOKEN": "...",
          "VERCEL_TEAM_ID": "team_..." // optional
        }
      }
    }
  5. Restart Claude Code.

Smoke test

export VERCEL_TOKEN=...
pnpm smoke

Hits list_projects and list_deployments and prints results.

Pairs with

  • spaceship-mcp — register a domain on Spaceship, then vercel_add_project_domain to attach it, then spaceship_point_to_vercel to wire DNS. Three tools, one prompt.

Auth

Authorization: Bearer $VERCEL_TOKEN. Team-scoped requests append ?teamId=... automatically when VERCEL_TEAM_ID is set.

License

MIT.