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

buildthisnow-mcp

v0.1.4

Published

Claude Code knowledge base MCP — 122 expert guides, one tool, exact answers

Readme

BuildThisNow MCP

The Claude Code knowledge base in your AI assistant. One tool, one call, exact answers.

122 expert guides on hooks, agents, CLAUDE.md, MCP servers, models, memory, context, planning, and more — served as focused sections, not full documents, so your context stays lean.

Quick Start

Add to your AI tool's MCP config and you're done:

Claude Code

~/.claude/settings.json:

{
  "mcpServers": {
    "buildthisnow": {
      "command": "npx",
      "args": ["-y", "buildthisnow-mcp@latest"]
    }
  }
}

Cursor

.cursor/mcp.json:

{
  "mcpServers": {
    "buildthisnow": {
      "command": "npx",
      "args": ["-y", "buildthisnow-mcp@latest"]
    }
  }
}

VS Code (Copilot)

VS Code settings.json:

{
  "mcp": {
    "servers": {
      "buildthisnow": {
        "command": "npx",
        "args": ["-y", "buildthisnow-mcp@latest"]
      }
    }
  }
}

Windsurf

~/.windsurf/mcp.json:

{
  "mcpServers": {
    "buildthisnow": {
      "command": "npx",
      "args": ["-y", "buildthisnow-mcp@latest"]
    }
  }
}

How It Works

One tool: buildthisnow_docs. Ask a specific question, get the exact answer.

"How do I set up a PostToolUse hook that auto-formats files with Prettier?"
→ Returns the exact code snippet from Hooks Guide > Auto-Format section (~150 tokens)

"How should I structure CLAUDE.md as an orchestration layer?"
→ Returns the orchestration vs onboarding comparison from CLAUDE.md Mastery (~300 tokens)

"Best practices for sub-agent design and task distribution"
→ Returns key patterns from Sub-Agent Design + Task Distribution (~400 tokens)

No browsing. No multi-step search. One call, best answer, minimal context cost.

Be Specific

The tool is optimized for precise questions:

| Query | Quality | |-------|---------| | "How do I auto-format files after Claude writes them?" | Great | | "What's the difference between Plan Mode and Auto-Planning?" | Great | | "Show me exit code patterns for hooks" | Great | | "Tell me about hooks" | Too vague | | "Everything about Claude Code" | Too broad |

What's Inside

| Topic | Guides | |-------|--------| | Getting Started | Installation, first project, what is Claude Code | | Setup & Config | Terminal, sandboxing, settings reference | | Development | Git, code review, permissions, worktrees, feedback loops | | Agents | Sub-agents, teams, orchestration, async, custom agents | | Mechanics | CLAUDE.md, memory, context, skills, planning, sessions | | Performance | Speed, deep thinking, fast mode, efficiency | | MCP Servers | Basics, browser, search tools, custom integrations | | Hooks | Lifecycle, permissions, cross-platform, self-validating | | IDE Extensions | VS Code, Cursor, keybindings, statusline | | Claude Models | Every model + when to use which | | Real Examples | Idea-to-SaaS, distribution agents, self-evolving hooks |

How It's Different From Context7

Context7 serves docs for any library — generic chunking, keyword matching, large responses.

BuildThisNow serves one knowledge base with hand-crafted routing:

  • Concept map routes "auto-format" directly to the right section of the right guide
  • Section-level retrieval returns ~200 tokens instead of ~5000
  • Hybrid search (concept map + TF-IDF) beats pure keyword matching on precision
  • Every response is a curated answer, not a search result dump

Development

git clone https://github.com/buildthisnow/buildthisnow-mcp.git
cd buildthisnow-mcp

npm install
npm run build:content   # reads blog MDX → generates content/ JSON
npm run build           # compiles TypeScript

License

MIT