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

@blazorblueprint/mcp

v1.0.1

Published

MCP server providing AI coding agents with structured access to Blazor Blueprint documentation

Readme

Blazor Blueprint MCP Server

An MCP (Model Context Protocol) server that provides AI coding agents with structured access to Blazor Blueprint documentation - 73 styled components and 15 primitives.

Features

  • Live Documentation: Fetches documentation from blazorblueprintui.com/llms/ with local disk caching
  • Fuzzy Search: Find components by name, description, or keywords using Fuse.js
  • Offline Support: Cached docs work without internet after first fetch
  • Cross-Platform: Cache stored in system-appropriate locations

Installation

npm install @blazorblueprint/mcp

Or run directly:

npx @blazorblueprint/mcp

Claude Code Integration

Quick Install

macOS/Linux:

claude mcp add blazorblueprint --transport stdio -- npx -y @blazorblueprint/mcp

Windows:

claude mcp add blazorblueprint --transport stdio -- cmd /c npx -y @blazorblueprint/mcp

Installation Scopes

Claude Code supports three scopes for MCP server configuration:

| Scope | Flag | Storage Location | Use Case | |-------|------|------------------|----------| | Local | --scope local (default) | ~/.claude.json under project path | Personal config for one project | | Project | --scope project | .mcp.json in project root | Shared with team via git | | User | --scope user | ~/.claude.json | Available in all your projects |

Examples:

# Available in all your projects (recommended for personal use)
claude mcp add blazorblueprint --transport stdio --scope user -- npx -y @blazorblueprint/mcp

# Shared with team via .mcp.json (commit to repo)
claude mcp add blazorblueprint --transport stdio --scope project -- npx -y @blazorblueprint/mcp

Project Configuration (.mcp.json)

When using --scope project, a .mcp.json file is created in your project root. Commit this file to share the MCP server with your team.

macOS/Linux (.mcp.json):

{
  "mcpServers": {
    "blazorblueprint": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@blazorblueprint/mcp"]
    }
  }
}

Windows (.mcp.json):

{
  "mcpServers": {
    "blazorblueprint": {
      "type": "stdio",
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@blazorblueprint/mcp"]
    }
  }
}

Windows Note: Windows requires wrapping npx with cmd /c to execute properly.

Useful Commands

claude mcp list              # List all configured servers
claude mcp get blazorblueprint   # Get details about the server
claude mcp remove blazorblueprint # Remove the server

Within Claude Code, use /mcp to check server status.


Claude Desktop Integration

Add to your claude_desktop_config.json:

Location:

  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "blazorblueprint": {
      "command": "npx",
      "args": ["-y", "@blazorblueprint/mcp"]
    }
  }
}

Available Tools

| Tool | Description | |------|-------------| | search_components | Fuzzy search for components by name, description, or keywords | | get_component | Get full documentation for a specific component | | list_components | List all components, optionally filtered by category | | get_setup | Get installation and setup instructions | | get_patterns | Get usage patterns and best practices | | get_icons | Get icon library documentation | | get_primitive | Get documentation for primitive (unstyled) components |

Tool Details

search_components

Search for components by query with optional filters.

{
  "query": "date picker",
  "category": "Inputs",
  "limit": 5
}

get_component

Get full documentation for a component by name.

{
  "name": "DataTable"
}

list_components

List components with optional filtering.

{
  "category": "Data Display"
}

get_setup

Get installation instructions with optional filters.

{
  "hosting_model": "server",
  "include_theming": true
}

get_patterns

Get usage patterns and examples.

{
  "pattern": "forms"
}

get_icons

Get icon documentation.

{
  "query": "arrow",
  "list_categories": false
}

get_primitive

Get documentation for a primitive component.

{
  "name": "dialog"
}

Configuration

Configure via environment variables:

| Variable | Description | Default | |----------|-------------|---------| | BLAZORBLUEPRINT_CACHE_TTL | Cache TTL in hours | 24 | | BLAZORBLUEPRINT_CACHE_DIR | Custom cache directory | Platform default | | BLAZORBLUEPRINT_OFFLINE | Force offline mode (use cache only) | false |

Cache Locations

  • Windows: %LOCALAPPDATA%/blazorblueprint-mcp/cache/
  • macOS: ~/Library/Caches/blazorblueprint-mcp/
  • Linux: ~/.cache/blazorblueprint-mcp/

Development

# Install dependencies
npm install

# Build
npm run build

# Run tests
npm test

# Type check
npm run typecheck

# Development mode (watch)
npm run dev

Testing with MCP Inspector

npx @modelcontextprotocol/inspector dist/index.js

License

MIT