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

@forgespace/branding-mcp

v0.6.0

Published

MCP server for AI-powered brand identity generation — color palettes, typography systems, design tokens, and brand guidelines with multi-format export

Readme

@forgespace/branding-mcp

AI-powered brand identity generation via MCP — part of the Forge Space open developer workspace.

CI License: MIT

Generate complete design systems — colors, typography, spacing, shadows, borders, motion tokens, gradients, multi-variant logos, favicons, and OG images with multi-format export. 9 MCP tools, zero API dependencies, algorithmic-first generation.

Features

  • Color Palette Generation — HSL-based color harmonies (complementary, analogous, triadic, etc.) with WCAG contrast validation
  • Typography System — Modular type scales with curated font pairings
  • Spacing Scale — Geometric progression spacing system
  • Shadow/Elevation System — 6-level elevation scale with brand-tinted shadows, light/dark theme support
  • Border/Shape System — Style-aware radius scales and border widths for all 8 brand styles
  • Motion/Animation System — Duration scales, cubic-bezier easings, and transition presets per brand style
  • Gradient System — 5 style-aware gradient presets (hero, button, card, text, background)
  • Multi-Variant Logo — Wordmark, monogram, abstract, and icon variants with style-aware shapes
  • Favicon Generation — 4 sizes (16, 32, 180 apple-touch, 512 PWA) from brand icon
  • OG Image Templates — Default, article, and social formats with brand gradients
  • Multi-Format Export — W3C Design Tokens, CSS custom properties, Tailwind preset, Figma tokens, React theme, Sass variables
  • Brand Validation — WCAG contrast checking, completeness scoring, consistency analysis
  • Brand Guidelines — HTML brand book generation

Quick Start

npm install
npm run build

As MCP Server (stdio)

{
  "mcpServers": {
    "branding": {
      "command": "node",
      "args": ["path/to/branding-mcp/dist/index.js"]
    }
  }
}

MCP Tools

| Tool | Description | | ---------------------------- | ------------------------------------------------------ | | generate_brand_identity | Complete brand from name, industry, and style | | generate_color_palette | Color palette with harmony and WCAG data | | generate_typography_system | Font pairing + modular type scale | | export_design_tokens | Export brand to JSON/CSS/Tailwind/Figma/React/Sass | | create_brand_guidelines | Generate HTML brand book | | validate_brand_consistency | Check WCAG compliance and completeness | | refine_brand_element | Iterate on specific brand elements | | generate_brand_assets | Generate favicons and OG images from brand | | generate_design_system | Complete design system in one call (identity + export) |

MCP Resources

| Resource | URI | Description | | --------------- | ------------------- | --------------------------------- | | Brand Templates | brand://templates | Pre-configured industry templates | | Brand Knowledge | brand://knowledge | Color theory and typography rules |

Development

npm run dev          # Watch mode
npm run validate     # Lint + format + test
npm run test         # Run tests
npm run test:coverage # Coverage report
npm run build        # Build TypeScript

Architecture

src/
├── index.ts                    # MCP server entry
├── lib/
│   ├── branding-core/          # Core library (reusable)
│   │   ├── generators/         # Color, typography, spacing, logo, gradients, favicons, OG
│   │   ├── exporters/          # Multi-format token export
│   │   ├── validators/         # WCAG, consistency checks
│   │   └── documents/          # Brand book generation
│   ├── config.ts               # Environment config
│   ├── logger.ts               # Pino logging
│   └── types.ts                # TypeScript interfaces
├── tools/                      # 8 MCP tool registrations
└── resources/                  # Templates + knowledge base

Ecosystem Integration

Part of the Forge Space ecosystem:

  • mcp-gateway — Register as MCP server (port 8033)
  • uiforge-mcp — Consumes brand tokens via brandId parameter
  • uiforge-webapp — Brand management UI at /branding/*
  • forge-patterns — Shared configs and conventions

License

MIT