Featured

Deploy OpenClaw in 60 seconds β€” 20% off logoDeploy OpenClaw in 60 seconds β€” 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger β†’
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger β†’
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free β†’
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now β†’
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data β€” no proxies, no parsers, no maintenance.

Start building free β†’
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it β€” secured from day one.

Get it set up for you β†’
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free β†’
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here β†’
brandkit-mcp logo

brandkit-mcp

ejwhite7/brandkit-mcp
1 starsv0.1.0STDIORegistry activeMITUpdated 2026-06-23Community

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

claude mcp add brandkit -- npx -y brandkit-mcp

Summary

ejwhite7/brandkit-mcp MCP server](https://glama.ai/mcp/servers/ejwhite7/brandkit-mcp/badges/score.svg)](https://glama.ai/mcp/servers/ejwhite7/brandkit-mcp) πŸ“‡ 🏠 🍎 πŸͺŸ 🐧 - Expose a company's complete design system (colors, typography, logos, components,...

Connect from your MCP client

One-click install

Add this server to your editor with a single click. Fill in any required credentials afterward.

Claude Code

Run this once and Claude Code registers the server for you:

claude mcp add brandkit -- npx -y brandkit-mcp

Claude Desktop

Add this to claude_desktop_config.json under Settings β†’ Developer β†’ Edit Config:

{
  "mcpServers": {
    "brandkit": {
      "command": "npx",
      "args": [
        "-y",
        "brandkit-mcp"
      ]
    }
  }
}

Cursor

Add this to .cursor/mcp.json in your project (or ~/.cursor/mcp.json for all projects):

{
  "mcpServers": {
    "brandkit": {
      "command": "npx",
      "args": [
        "-y",
        "brandkit-mcp"
      ]
    }
  }
}

Cline and other MCP clients

Most MCP clients accept the standard mcpServers JSON block:

{
  "mcpServers": {
    "brandkit": {
      "command": "npx",
      "args": [
        "-y",
        "brandkit-mcp"
      ]
    }
  }
}

Codex CLI

Register the server with OpenAI's Codex CLI β€” run this once, or add the equivalent block to ~/.codex/config.toml:

codex mcp add brandkit -- npx -y brandkit-mcp

# or add to ~/.codex/config.toml:
[mcp_servers.brandkit]
command = "npx"
args = ["-y", "brandkit-mcp"]

OpenClaw

OpenClaw reads MCP servers from the mcp.servers section of ~/.openclaw/openclaw.json (managed via `openclaw mcp add` or the mcporter skill):

{
  "mcp": {
    "servers": {
      "brandkit": {
        "command": "npx",
        "args": [
          "-y",
          "brandkit-mcp"
        ]
      }
    }
  }
}

README.md

BrandKit MCP

Give every AI tool access to your company's complete brand atomic system via the Model Context Protocol.

![npm version](https://www.npmjs.com/package/brandkit-mcp) ![License: MIT](LICENSE) ![Node 20+](https://nodejs.org) ![TypeScript](https://www.typescriptlang.org) ![ejwhite7/brandkit-mcp MCP server](https://glama.ai/mcp/servers/ejwhite7/brandkit-mcp)

BrandKit MCP v2 is an open-source MCP server that exposes a company's complete brand atomic system -- verbal identity (positioning, audience, messaging, differentiation, concepts, voice) and visual identity (colors, typography, components, tokens, motion, assets) -- to Claude and other AI tools via the Model Context Protocol (MCP). It ships 18 tools and 14 resources. When an LLM helps build a website, app, or marketing asset, it has instant structured access to the exact brand language and visual rules it needs -- including a human-authored taste primer that carries the brand's instincts, not just its specs.

Quick Start

# 1. Install
npm install -g brandkit-mcp

# 2. Scaffold a new brand atomic system from the starter template
brandkit-mcp init

# 3. Edit the scaffolded files with your brand content

# 4. Wire into Claude Desktop (or any MCP-compatible client)
#    Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
#    {
#      "mcpServers": {
#        "brandkit": {
#          "command": "brandkit-mcp",
#          "args": ["serve"]
#        }
#      }
#    }

Repository Structure

A brand atomic system lives under a single <brand-root>/ directory (default: ./brand_atomic_system):

<brand-root>/
β”œβ”€β”€ readme.md
β”œβ”€β”€ magic_trick.md               # human-authored taste primer
β”œβ”€β”€ brandkit.config.yaml         # version: 2
β”œβ”€β”€ human/                       # PDFs and human-only material (MCP ignores)
β”‚   └── *.pdf
└── agent/
    β”œβ”€β”€ verbal/
    β”‚   β”œβ”€β”€ positioning.md
    β”‚   β”œβ”€β”€ audience.yaml
    β”‚   β”œβ”€β”€ messaging.md
    β”‚   β”œβ”€β”€ differentiation.md
    β”‚   β”œβ”€β”€ concepts.md
    β”‚   └── voice.md
    └── visual/
        β”œβ”€β”€ colors_and_type.css
        β”œβ”€β”€ fonts/
        β”œβ”€β”€ assets/
        β”œβ”€β”€ components/
        β”œβ”€β”€ tokens/
        β”œβ”€β”€ motion/
        β”‚   β”œβ”€β”€ motion.json
        β”‚   └── motion.css
        └── artifacts/
            β”œβ”€β”€ web/             # override layer
            └── product/         # override layer

The human/ directory is intentionally ignored by the MCP server -- put PDFs, print specs, or any other human-only material there. Everything under agent/ is indexed and served.

MCP Tools Reference

BrandKit MCP exposes 18 tools to AI assistants:

| Tool | Description | |------|-------------| | get_brand_overview | High-level overview + taste primer | | get_magic_trick | Verbatim magic_trick.md | | get_positioning | Positioning document | | get_audience | Audience YAML, parsed | | get_messaging | Messaging document | | get_differentiation | Differentiation document | | get_concepts | Creative concepts/directions | | get_voice | Voice document | | get_colors_and_type | Colors + typography custom properties | | get_assets | Logos + brand assets | | get_fonts | Font faces | | get_components | UI primitives | | get_tokens | Token specimens | | get_motion | Motion system (json + css) | | get_css | colors_and_type.css + motion.css text | | search_brand | Full-text search | | validate_usage | Validate brand compliance | | get_context_diff | Diff base vs web vs product |

Taste primer

Seven creative/verbal tools (get_brand_overview, get_positioning, get_audience, get_messaging, get_differentiation, get_concepts, get_voice) inject a _taste_primer field carrying magic_trick.md verbatim. get_magic_trick returns the primer directly without wrapping.

MCP Resources

BrandKit MCP exposes 14 brand:// URIs as MCP resources:

| URI | Description | |-----|-------------| | brand://overview | Brand overview | | brand://magic_trick | Taste primer | | brand://verbal/positioning | Positioning document | | brand://verbal/audience | Audience YAML | | brand://verbal/messaging | Messaging document | | brand://verbal/differentiation | Differentiation document | | brand://verbal/concepts | Creative concepts | | brand://verbal/voice | Voice document | | brand://visual/colors_and_type | Colors + typography CSS | | brand://visual/assets | Asset index | | brand://visual/fonts | Font face index | | brand://visual/components | Component index | | brand://visual/tokens | Token specimens | | brand://visual/motion | Motion system |

Configuration

The brandkit.config.yaml file at your project root controls BrandKit MCP:

version: 2
brand:
  name: Acme Corp
  description: Plumbing for builders.
  root: ./brand_atomic_system
contexts: [base, web, product]
ignore:
  - human/

version: 2 is required. A config file missing this field or declaring version: 1 causes the server to throw BrandkitV1ConfigError at startup.

Context System

BrandKit v2 supports three contexts:

| Context | Purpose | |---------|---------| | base | Shared foundation -- fonts, core colors, global tokens | | web | Overrides for the public-facing website (agent/visual/artifacts/web/) | | product | Overrides for the SaaS application (agent/visual/artifacts/product/) |

Verbal content (agent/verbal/) has no context overrides -- it applies globally. Visual content can be overridden per context via the artifacts/ layer.

Migrating from v1

2.0.0 is a breaking release. The directory layout, context vocabulary, and tool surface have all changed. No automated migration is included -- the path mapping is manual:

| v1 path | v2 path | |---------|---------| | brand/shared/colors/.css | agent/visual/colors_and_type.css | | brand/shared/typography/.css | agent/visual/colors_and_type.css | | brand/shared/logos/ | agent/visual/assets/ | | brand/shared/components/.md | agent/visual/components/.md | | brand/shared/voice/brand-voice.md | agent/verbal/voice.md | | brand/shared/guidelines/.md | agent/verbal/{positioning,messaging,differentiation,concepts}.md | | brand/marketing/ | agent/visual/artifacts/web/ | | brand/product/ | agent/visual/artifacts/product/ |

Your brandkit.config.yaml must also be updated to declare version: 2 and use the new brand.root field. v1 configs throw BrandkitV1ConfigError at startup -- the server will not start until the config is updated.

Conventions

magic_trick.md is human-authored. The MCP reads it but no tool writes to it. If write tools are added in a future version, they must denylist this path. The taste primer is the brand's instincts -- it must stay human.

Token output formats. The get_tokens tool supports CSS custom properties, SCSS variables, Tailwind config, W3C Design Tokens, and flat JSON.

Transports. The server supports stdio (recommended for Claude Desktop), SSE (legacy HTTP), and Streamable HTTP (current MCP spec).

CLI Reference

brandkit-mcp <command> [options]

Commands:
  init [directory]      Scaffold a brand atomic system from the starter template
  validate [config]     Validate configuration and scan for issues
  serve                 Start the MCP server
  preview               Start the local preview UI for browsing the brand atomic system
  docs                  Generate project documentation files

Global Options:
  --version             Show version number
  --help                Show help

Contributing

Contributions are welcome.

git clone https://github.com/ejwhite7/brandkit-mcp
cd brandkit-mcp
npm install
npm run build
npm test
  • TypeScript strict mode
  • ESM imports with .js extensions
  • No any types -- use proper interfaces
  • Tests use Vitest

License

MIT -- see LICENSE for details.

---

Built with the Model Context Protocol by Anthropic.

See related servers & alternatives β†’

Related MCP servers

Browse all β†’

Related guides

Hand-picked reading to help you choose and use Files & Docs servers.