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

@mohityadav0903/branintelle-mcp

v3.1.2

Published

MCP server for Branintelle UI Library - provides component documentation via Model Context Protocol

Readme

Branintelle MCP Server

Version 2.0.0 - Enhanced Model Context Protocol server for Branintelle UI Library

Provides comprehensive component documentation, design tokens, and usage patterns to LLMs via the Model Context Protocol.


🚀 Features

  • 36 Angular Components - Full metadata with inputs, outputs, and examples
  • Complete Design System - 1300+ design tokens from Figma
  • Usage Patterns - Best practices for common UI scenarios
  • Smart Search - Find components by keyword or use case
  • Type Definitions - Full TypeScript interfaces included

📦 Installation

Via npx (Recommended)

npx @mohityadav0903/branintelle-mcp

Global Install

npm install -g @mohityadav0903/branintelle-mcp
branintelle-mcp

🔌 Setup with Claude Desktop

Config file: ~/Library/Application Support/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "branintelle": {
      "command": "npx",
      "args": ["-y", "@mohityadav0903/branintelle-mcp"]
    }
  }
}

Then restart Claude Desktop and look for the 🔌 icon!


🛠️ Available Tools

1. list_components

Lists all 36 components with optional filtering and detail levels

// Basic list
{ "category": "Buttons" }

// Detailed with full metadata
{ "category": "Tables", "detailed": true }

2. get_component_docs

Get comprehensive docs for specific components

{
  "components": ["CustomButton", "StatusPill", "ScrollableDataTable"]
}

Returns:

  • Full TypeScript interfaces
  • Input/Output properties
  • Code examples
  • Design tokens used
  • Usage patterns

3. get_design_tokens

Access the complete Figma design system

// All tokens with contexts
{ "category": "all", "includeContexts": true }

// Just colors, no contexts
{ "category": "colors", "includeContexts": false }

Returns:

  • 10 violet shades
  • 9 text color variations
  • Feedback colors (success, error, warning)
  • Typography scales
  • Usage contexts from Figma

4. search_components

Search by keyword or use case

// Search by keyword
{ "query": "dropdown" }

// Filter by use case
{ "query": "select", "useCase": "forms" }

5. get_usage_pattern

Get recommended patterns and best practices

{ "pattern": "primary-actions" }
{ "pattern": "multi-step-forms" }
{ "pattern": "data-display" }

Available patterns:

  • primary-actions - Main CTAs and buttons
  • status-indicators - Status pills and badges
  • multi-step-forms - Guided workflows
  • data-display - Tables and lists
  • form-inputs - Dropdowns and inputs

💡 Example Queries for LLMs

Once connected to Claude Desktop:

  • "What button components are available in Branintelle?"
  • "Show me how to use the ScrollableDataTable with sorting"
  • "What are the primary brand colors?"
  • "Find all dropdown components"
  • "Show me the multi-step-forms pattern"
  • "Get design tokens for typography"

📊 Component Categories

  • Buttons (5) - CustomButton, ApproveButton, CancelButton, BackButton, ButtonImage
  • Status (3) - StatusPill, PillBadge, PillBox
  • Progress (2) - ProgressBar, SegmentedProgressBar
  • Navigation (3) - VerticalStepper, CustomBreadcrumb, HeaderTabs
  • Text (2) - TitleHeaderSubtext, HelpText
  • Forms (2) - SearchBar, Checklist
  • Cards (4) - HorizontalCard, InfoActionCard, ProgressDisplayCard, ProfileImageList
  • Dropdowns (5) - SingleSelect, MultiSelect, DropdownWithStatus, MultilineOption, ExpandableMenu
  • Overlays (2) - CustomTooltip, ConfirmWarning
  • Workflows (3) - VerticalStages, UserSelection, Accordion
  • Filters (2) - GeoTagFilter, TableActionMenu
  • Tables (3) - ScrollableDataTable, CollapsableTable, CollapsableTableSmall

🎨 Design System

Colors

  • 10 Violet Shades - Primary brand palette (#544d7c - #232034)
  • 9 Text Colors - From white to max contrast
  • Feedback Colors - Success, error, warning, selected
  • State Colors - Hover, active, disabled

Typography

  • Font Family: Lato
  • Scales: Display, Heading (2XL-Small), Body (Large-XSmall), Caption, Code
  • Weights: 400, 500, 600, 700

All Design Tokens

  • 1300+ tokens with usage contexts
  • Extracted from Figma design files
  • CSS variables available in demo app

🔗 Related Packages


📝 What's New in v2.0

Enhanced Component Metadata

  • Full TypeScript interfaces for all components
  • Input/Output property documentation
  • Real code examples with data
  • Design tokens mapping

Complete Design System

  • Full 1300+ Figma tokens included
  • Usage contexts for each token
  • Component-specific recommendations

New Tools

  • search_components - Smart component search
  • get_usage_pattern - Best practice patterns
  • Enhanced get_design_tokens with contexts

Better Developer Experience

  • Detailed TypeScript types
  • Copy-paste ready examples
  • Pattern-based recommendations

🤝 Contributing

This MCP server is part of the Branintelle UI ecosystem. For issues or feature requests, please visit our GitHub repository.


📄 License

MIT License - see LICENSE file for details


🌟 Made for AI-First Development

Built specifically to make Branintelle UI components discoverable and usable by Large Language Models through the Model Context Protocol.

Package: @mohityadav0903/branintelle-mcp
Version: 2.0.0
Protocol: MCP (Model Context Protocol)
Runtime: Node.js 18+