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

staxly-mcp

v1.0.0

Published

MCP server for the Staxly catalog — 129 developer platforms (BaaS, databases, auth, hosting, AI APIs, payments, CI/CD, forms, docs, design, secrets, scheduling, PM, API clients and more) with structured pricing, quotas, features, and a monthly-cost estima

Readme

staxly-mcp

MCP server that exposes the Staxly catalog of 129 developer platforms — BaaS, databases, auth, hosting, AI APIs, payments, CI/CD, commerce, docs, design, secrets, scheduling, project management, API clients, forms, UI kits, and more — to Claude Code, Cursor, Zed, and any other MCP-compatible AI agent.

Instead of asking the model to recall pricing or limits (which change often and are hallucinated frequently), the model queries a curated Postgres database for structured, up-to-date data: pricing tiers, quota limits, features, SDKs, REST endpoints, and even a monthly-cost estimator.

Install

npm install -g staxly-mcp        # or use npx directly in your MCP config

Configure in Claude Code

Add with the CLI:

claude mcp add staxly --scope user -- npx -y staxly-mcp

Or manually in ~/.claude/settings.json:

{
  "mcpServers": {
    "staxly": {
      "command": "npx",
      "args": ["-y", "staxly-mcp"]
    }
  }
}

Configure in Cursor / Zed / generic MCP

{
  "mcpServers": {
    "staxly": {
      "command": "npx",
      "args": ["-y", "staxly-mcp"]
    }
  }
}

Tools

| Tool | What it does | |---------------------|------------------------------------------------------------------------| | list_platforms | Browse catalog, filter by category (baas, dbaas, ai-coding, …) | | get_platform | Full details: interfaces, tiers, limits, features | | compare_platforms | Side-by-side comparison for 2–6 platforms | | get_pricing | Pricing tiers for one platform (monthly/annual USD + included quotas) | | get_limits | Quotas, rate limits, hard caps, overage rates | | search_features | Find platforms that ship a named feature (e.g. "vector search") | | list_operations | CLI commands, SDK calls, REST endpoints for any platform | | estimate_cost | Project monthly USD cost given MAU, storage, bandwidth, fn calls |

Example prompts

"I'm building a chat app expecting 20k MAU and 10 GB storage. Compare monthly cost across Supabase, Firebase, and Convex."

(Agent calls estimate_cost + get_limits → answers with real numbers.)

"Which BaaS platforms have native vector search?"

(Agent calls search_features with query="vector".)

"Show me every CLI command available in Supabase."

(Agent calls list_operations with platform=supabase, interface_slug=cli.)

"What is the cheapest Postgres with branching support, and what does it cost at 10 GB of storage?"

(Agent calls list_platformsget_limitsestimate_cost chain.)

Environment

  • STAXLY_DATABASE_URL — Postgres connection to the Staxly catalog. Defaults to the public read-mostly mirror (no setup needed).
  • MACHETE_DATABASE_URL — legacy name, still supported for backward compatibility.

Development

git clone https://github.com/staxlydev/staxly-mcp
cd staxly-mcp
npm install
node test.js      # smoke-test all tools against live DB
node server.js    # run over stdio (for manual MCP-client testing)

Data coverage (v1.0.0)

  • 129 platforms across 27 categories
  • 16,000+ side-by-side comparison routes (also available on staxly.dev)
  • Categories: BaaS, Auth, DBaaS, Hosting, Payments, AI APIs, Email, Notifications, Analytics, Monitoring, CMS, Search & Vector DB, Feature Flags, AI Coding, AI Search, LLM Observability, AI Gateway, AI Frameworks, Workflow Automation, Commerce, CI/CD, Forms, Docs, UI Kits, Scheduling, Project Management, API Clients, Design, Secrets Management

Browse the full catalog at staxly.dev.

License

MIT — © Staxly. Free for commercial and personal use.