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

@ktmcp-cli/awsbudgets

v1.0.0

Published

Production-ready CLI for AWS Budgets Cost Management API - Kill The MCP

Downloads

105

Readme

"Six months ago, everyone was talking about MCPs. And I was like, screw MCPs. Every MCP would be better as a CLI."

Peter Steinberger, Founder of OpenClaw Watch on YouTube (~2:39:00) | Lex Fridman Podcast #491

AWS Budgets CLI

Production-ready CLI for the AWS Budgets Cost Management API. Track spending, set alerts, and manage budget notifications from your terminal.

Installation

npm install -g @ktmcp-cli/awsbudgets

Configuration

awsbudgets config set --access-key-id YOUR_ACCESS_KEY_ID \
  --secret-access-key YOUR_SECRET_ACCESS_KEY \
  --account-id YOUR_AWS_ACCOUNT_ID

Usage

Config

# Set AWS credentials
awsbudgets config set --access-key-id <id> --secret-access-key <secret> --account-id <account>

# Get a config value
awsbudgets config get accountId

# List all config
awsbudgets config list

Budgets

# List all budgets
awsbudgets budgets list

# Get budget details
awsbudgets budgets get my-monthly-budget

# Create a monthly cost budget
awsbudgets budgets create \
  --name "Monthly Production Costs" \
  --amount 1000 \
  --unit USD \
  --time-unit MONTHLY

# Create a daily usage budget
awsbudgets budgets create \
  --name "Daily EC2 Usage" \
  --amount 50 \
  --unit USD \
  --time-unit DAILY \
  --type USAGE

# Update budget limit
awsbudgets budgets update my-monthly-budget --amount 1500

# Delete a budget
awsbudgets budgets delete my-monthly-budget

# JSON output
awsbudgets budgets list --json

Notifications

# List notifications for a budget
awsbudgets notifications list my-monthly-budget

# Create a notification at 80% threshold
awsbudgets notifications create my-monthly-budget \
  --type ACTUAL \
  --threshold 80 \
  --email [email protected]

# Create a forecasted spend notification
awsbudgets notifications create my-monthly-budget \
  --type FORECASTED \
  --threshold 100 \
  --email [email protected]

# Delete a notification
awsbudgets notifications delete my-monthly-budget \
  --type ACTUAL \
  --threshold 80

Subscribers

# List subscribers for a notification
awsbudgets subscribers list my-monthly-budget \
  --type ACTUAL \
  --threshold 80

# Add a subscriber
awsbudgets subscribers create my-monthly-budget \
  --type ACTUAL \
  --threshold 80 \
  --email [email protected]

# Add SNS subscriber
awsbudgets subscribers create my-monthly-budget \
  --type ACTUAL \
  --threshold 90 \
  --email arn:aws:sns:us-east-1:123456789:MyBudgetTopic \
  --sub-type SNS

# Remove a subscriber
awsbudgets subscribers delete my-monthly-budget \
  --type ACTUAL \
  --threshold 80 \
  --email [email protected]

Budget Types

  • COST — Track spending in USD (default)
  • USAGE — Track service usage (e.g. EC2 hours)
  • RI_UTILIZATION — Reserved Instance utilization
  • RI_COVERAGE — Reserved Instance coverage
  • SAVINGS_PLANS_UTILIZATION — Savings Plans utilization
  • SAVINGS_PLANS_COVERAGE — Savings Plans coverage

Time Periods

  • DAILY — Reset every day
  • MONTHLY — Reset every month (most common)
  • QUARTERLY — Reset every quarter
  • ANNUALLY — Reset every year

License

MIT