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

@provision-stack/mcp

v0.5.0

Published

MCP client for Provision Stack — outcome-based infrastructure provisioning via natural language

Readme

Provision Stack MCP

Cloud infrastructure provisioning via natural language. Deploy production-ready infrastructure on your own AWS, GCP, Azure, or Oracle account with a single prompt.

Quick Start

Remote (recommended)

Point your MCP client directly at the hosted API — no local process needed:

{
  "mcpServers": {
    "provision-stack": {
      "url": "https://api.provision-stack.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_TOKEN"
      }
    }
  }
}

Get a token: curl -X POST https://api.provision-stack.com/auth/tokens -H 'Content-Type: application/json' -d '{"agentId":"your-agent","scopes":[]}'

Local stdio (via npx)

npx @provision-stack/mcp

Or add to your MCP client config:

{
  "mcpServers": {
    "provision-stack": {
      "command": "npx",
      "args": ["-y", "@provision-stack/mcp"],
      "env": {
        "PROVISION_STACK_API_TOKEN": "YOUR_TOKEN"
      }
    }
  }
}

Install globally

npm install -g @provision-stack/mcp
provision-stack-mcp

Tools (12)

| Tool | Purpose | |------|---------| | suggestions.generate | Get 4 tier options (Starter/MVP/Startup/Enterprise) with monthly costs | | pricing.get | Detailed cost breakdown for individual cloud resources | | region.detect | Detect configured AWS/GCP/Azure/Oracle region | | providers.detect | Detect all configured cloud providers | | credentials.list | Check cloud credential configuration | | deploy.run | Provision infrastructure via the Execution API | | deploy.status | Check deployment progress | | deploy.destroy | Tear down a specific deployment | | deploy.list | List all tracked deployments | | deploy.teardown_latest | Destroy most recent active deployment | | billing.balance | Check account credit balance | | billing.top_up | Add credits (XRP or Stripe) |

Typical Flow

1. region.detect          → Get your AWS region
2. suggestions.generate   → Get 4 tier options with costs
3. Present options        → Show costs, resources, tradeoffs
4. WAIT for user choice   → Never proceed without explicit selection
5. deploy.run             → Provision infrastructure
6. Report results         → Deployment ID, resources, costs

Environment Variables

| Variable | Description | Default | |----------|-------------|---------| | PROVISION_STACK_EXECUTION_API_URL | API base URL | https://api.provision-stack.com | | PROVISION_STACK_API_TOKEN | Bearer token | (none — read-only tools work without) | | AWS_REGION | AWS region override | ~/.aws/config or us-east-1 | | AWS_PROFILE | AWS profile name | default |

Architecture

This package is a thin client — it defines MCP tools and forwards calls to the hosted Execution API. All business logic (pattern matching, pricing, Terraform generation, verification) runs server-side.

Your AI Client → MCP stdio/HTTP → This Package → Execution API → Your AWS Account

The API endpoint requires authentication for write operations (deploy.run, deploy.destroy, billing.top_up). Read operations (suggestions.generate, pricing.get, region.detect) work without a token.

Pre-0.5.0 underscore names still work on tools/call (e.g. generate_suggestionssuggestions.generate); tools/list advertises only the dotted names.

Links

  • API: https://api.provision-stack.com
  • Website: https://provision-stack.com
  • Docs: https://provision-stack.com/llms.txt
  • Issues: https://github.com/TravisLinkey/provision-stack-mcp/issues

License

MIT