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

@upstash/mcp-server

v0.2.2

Published

MCP server for Upstash

Readme

Upstash MCP

Install MCP Server

smithery badge

The Upstash MCP gives your agent the ability to interact with your Upstash account, such as:

Redis

  • "Create a new Redis in us-east-1"
  • "List my databases that have high memory usage"
  • "Give me the schema of how users are stored in redis"
  • "Create a backup and clear db"
  • "Give me the spikes in throughput during the last 7 days"

QStash & Workflow

  • "Check the logs and figure out what is wrong"
  • "Find me failed workflows of user @ysfk_0x"
  • "Restart the failed workflow run started in last 2 hours"
  • "Check DLQ and give me a summary"

Usage

Quick Setup

First, get your Upstash credentials:

Add this to your MCP client configuration:

{
  "mcpServers": {
    "upstash": {
      "command": "npx",
      "args": [
        "-y",
        "@upstash/mcp-server@latest",
        "--email",
        "YOUR_EMAIL",
        "--api-key",
        "YOUR_API_KEY"
      ]
    }
  }
}

Claude Code

claude mcp add --transport stdio upstash -- npx -y @upstash/mcp-server@latest --email YOUR_EMAIL --api-key YOUR_API_KEY

Streamable HTTP Transport (for web applications)

Start your MCP server with the http transport:

npx @upstash/mcp-server@latest --transport http --port 3000 --email YOUR_EMAIL --api-key YOUR_API_KEY

And configure your MCP client to use the HTTP transport:

{
  "mcpServers": {
    "upstash": {
      "url": "http://localhost:3000/mcp"
    }
  }
}

Telemetry

The server sends anonymous runtime/platform info to Upstash with each request. To opt out, add --disable-telemetry to your args.

Troubleshooting

See the troubleshooting guide in the official MCP documentation. You can also reach out to us at Discord for support.

Development

Clone the project and run:

bun i
bun run watch

This will continuously build the project and watch for changes.

For testing, you can create a .env file in the same directory as the project with the following content:

UPSTASH_EMAIL=<UPSTASH_EMAIL>
UPSTASH_API_KEY=<UPSTASH_API_KEY>

To install the local MCP Server to Claude Code, run:

claude mcp add --transport stdio upstash -- bun --watch dist/index.js --debug

To view the logs from the MCP Server in real time, run:

bun run logs