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

aws-blocks-mcp

v0.1.1

Published

MCP server for AWS Blocks projects: lets an AI agent discover your Building Blocks, read local and deployed data, and call your API. Read-only by default.

Readme

aws-blocks-mcp

An MCP server for AWS Blocks projects. It lets an AI agent understand the project it is sitting in — which blocks exist, what data they hold locally and in AWS, and what your API returns.

Setup

The easiest path registers it for you, backing up the config first and preserving every other server already in it:

npx aws-blocks-console connect

Or add it by hand:

{
  "mcpServers": {
    "aws-blocks-mcp": {
      "command": "npx",
      "args": ["-y", "aws-blocks-mcp"],
      "autoApprove": ["blocks_project", "blocks_read", "blocks_rpc"]
    }
  }
}

No project path is baked in. The server resolves the project from the agent's working directory, so one registration covers every AWS Blocks project you work on. MCP servers spawn when your agent starts, so restart the agent after registering.

Tools

| Tool | What it does | | --- | --- | | blocks_project | The project's scope, every block with its type and key schema, its API methods, and whether a deployed stack was found. Start here — the other tools take ids from it. | | blocks_read | Records from one block's store, from local .bb-data or the deployed DynamoDB table / Cognito pool. | | blocks_rpc | Calls an API method against the local dev server or the deployed endpoint. |

An unknown block id fails loudly with the list of real ids rather than returning an empty result, so an agent corrects itself instead of concluding your table is empty.

Read-only by default

Only the three read tools above are registered. Write tools are not registered at all unless AWS_BLOCKS_MCP_ALLOW_WRITES=1 is set — not merely refused when called, but absent from the tool list, so an agent cannot alter production data unattended. blocks_project reports writesEnabled: false so the agent can explain the limitation rather than failing mysteriously.

For interactive writes against a real stack, use aws-blocks-console, whose unlock gate keeps a human in the loop.

Values shaped like credentials are redacted before they leave the server, in both local and cloud reads.

Local mode needs no AWS

All three tools work against a local dev server with no AWS credentials. Only reading deployed data needs credentials and a stack.

License

MIT