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

blueprint-mcp

v0.1.3

Published

MCP server for architecture-aware Blueprint memory using Tree-sitter

Readme

Blueprint MCP

Blueprint gives AI coding agents a durable architecture memory for your repository.

It turns a codebase into a structured project map: responsibilities, relationships, entry points, risks, and the context an agent should read before changing code.

Instead of loading an entire repository into context, an agent can focus on the parts of the system that matter for the task. Developers also get a visual frontend for exploring the generated architecture map.

Use Blueprint when you want AI coding agents to work with less guesswork, tighter context, and a clearer understanding of how your project is actually put together.

Why Blueprint?

  • Gives agents a task-focused way to understand large codebases before editing.
  • Groups the system by responsibility, data flow, and ownership boundaries.
  • Produces detailed group documentation that agents can read selectively.
  • Reduces wasted context by routing each task to the most relevant project areas.
  • Keeps the architecture memory refreshable as the repository changes.
  • Provides a visual viewer so developers can inspect the same project map.

Blueprint does not replace source code as the source of truth. It gives both agents and developers a better starting point before they inspect the source.

Install

npm install -g blueprint-mcp

Requires Node.js 20 or newer.

Global installation makes the blueprint command available in your shell:

blueprint open --watch

If you install Blueprint only inside a project with npm install blueprint-mcp, run it through an npm script or node_modules/.bin; local npm binaries are not added to your interactive shell path automatically.

MCP Configuration

Add Blueprint to your MCP client:

{
  "mcpServers": {
    "blueprint": {
      "command": "blueprint-mcp"
    }
  }
}

Restart your MCP client after changing the configuration.

Quick Start

Open your project in the coding agent you already use, such as Codex or Claude Code, and ask it to create a Blueprint:

Create a blueprint for this project.

The agent will scan the repository, group the codebase by responsibility, and write the architecture memory for future tasks.

Blueprint writes documentation in English by default. To use another language, ask for it naturally:

Create a Turkish blueprint for this project.

What It Creates

Blueprint writes local project memory under .blueprint/:

| File | Purpose | | --- | --- | | brief.md | A compact routing index agents read first. | | groups/*.md | Human-readable architecture notes for each project area. | | blueprint-output.json | Structured project graph for tools and viewers. | | refresh-scan.json | Filesystem snapshot used for deterministic refreshes. |

Teams can decide whether to commit .blueprint/ or keep it local.

Tools

| Tool | Purpose | | --- | --- | | blueprint.scan | Builds file inventory and code analysis artifacts. | | blueprint.group | Prepares or applies semantic file grouping. | | blueprint.compose | Writes the final Blueprint output and Markdown notes. | | blueprint.refresh | Refreshes Blueprint state from the current filesystem snapshot. | | blueprint.group.update | Assigns unassigned files or manages empty groups after refresh. |

Viewer

Blueprint includes a static viewer for exploring generated memory. Open it in watch mode while working:

blueprint open --watch

Watch mode keeps the static viewer regenerated when Blueprint memory changes. If you only want to open the viewer once, remove --watch from the command.

Language Support

Blueprint uses Tree-sitter analysis for:

  • TypeScript / JavaScript
  • Python
  • Go
  • Rust
  • Java

Other files are still included in the inventory, but deeper symbol and import analysis depends on language support.

License

MIT