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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@portkey-ai/hoot

v0.13.0

Published

Postman for MCP Servers - A fast, lightweight testing tool with full OAuth 2.1 support

Downloads

502

Readme

🦉 hoot

⚠️ early beta - things might break. if they do, open an issue.

🤝 contributions welcome - see something that could be better? PRs are appreciated!

testing tool for MCP servers. like postman but for MCP.

https://github.com/user-attachments/assets/e3add38e-9636-4f40-99d8-f4a2b8f0f056

why

needed a quick way to test MCP servers without spinning up a whole AI chat interface.

install

npx -y @portkey-ai/hoot

that's it. opens on localhost:8009

or install globally if you want:

npm install -g @portkey-ai/hoot
hoot

npx-hoot

what works

  • connect to MCP servers (http/sse)
  • auto-detection - just paste a URL, we figure out the rest
  • see what tools they have
  • execute tools with params
  • view responses
  • oauth 2.1 if your server needs it
  • copy stuff to clipboard
  • 🦉 "try in hoot" links - share servers with just a URL (docs)
  • 8 beautiful themes - light & dark modes (docs)

how it works

runs a node.js backend that connects to MCP servers (because CORS is annoying). react frontend talks to the backend over localhost.

browser → backend → mcp servers

no cors issues. backend handles oauth tokens in sqlite.

persistence

  • server configs & tools: saved in browser localStorage (survives page refreshes)
  • oauth tokens: stored in ~/.hoot/hoot-mcp.db (persists across npx runs)

your servers stay configured between sessions, even when running with npx!

running from source

git clone <repo>
npm install
npm run dev:full

backend runs on 8008, frontend on 8009.

debugging

there's a logger in the console:

hootLogger.download()  // get logs

🔒 security

hoot includes built-in security features for safe local development:

  • ✅ session-based authentication
  • ✅ rate limiting
  • ✅ audit logging
  • ✅ localhost-only access

runs securely on your local machine. read more

what's missing

  • resources (coming)
  • prompts (coming)
  • more tests (working on it)

tech

react 19, typescript, vite, zustand, express, MCP SDK

license

MIT


made this because i was tired of curl-ing MCP servers. hope it helps.