BrandKity MCP Server
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@BrandKity MCP ServerCreate a brand kit for Acme Corp with accent #E55B00"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@brandkity/mcp — BrandKity MCP Server
Model Context Protocol server for BrandKity — create and manage brand kits from any AI agent (Claude Desktop, Cursor, Windsurf, or any MCP-compatible client).
Current Version: 1.4.0 — Now with white-label branding support (Pro+)
Quick Start
1. Get an API Key
Sign in at brandkity.com
Go to Settings → API Keys
Click Generate New Key and copy the key (
bk_live_...)
Requires a Pro or Agency plan for tool execution.
2. Configure Your AI Client
Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (Mac) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"brandkity": {
"command": "npx",
"args": ["-y", "@brandkity/mcp"],
"env": {
"BRANDKITY_API_KEY": "bk_live_your_key_here"
}
}
}
}Cursor
Edit .cursor/mcp.json:
{
"mcpServers": {
"brandkity": {
"command": "npx",
"args": ["-y", "@brandkity/mcp"],
"env": {
"BRANDKITY_API_KEY": "bk_live_your_key_here"
}
}
}
}Windsurf
Edit ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"brandkity": {
"command": "npx",
"args": ["-y", "@brandkity/mcp"],
"env": {
"BRANDKITY_API_KEY": "bk_live_your_key_here"
}
}
}
}3. Use It
Once configured, ask your AI agent to create a brand kit:
"Create a brand kit for Acme Corp with the accent color #E55B00. Add a Colors block with the primary palette (Orange Flame #E55B00, Midnight #1A1A2E, Canvas #FAF9F7) and a Typography block with Inter for headings and DM Sans for body. Upload the logos from /Users/me/acme/logos/."
Available Tools (22)
Tool | Description |
Workspace | |
| Get workspace info (plan, kit count, storage) |
Files | |
| Upload any local file to workspace storage → returns a public URL |
| List workspace files with type filter and pagination |
Kits | |
| List all brand kits (filter by draft/published/all) |
| Create a new kit → returns kit_id |
| Get a kit with all blocks and content |
| Update kit settings (name, color, template, logo_url, cover_image_url, white-label fields) |
| Publish a kit → returns public URL |
| Unpublish a kit (reverts to draft) |
Blocks | |
| List all blocks in a kit with IDs and types |
| Idempotent — returns existing block_id or creates a new block (preferred over add_block) |
| Add a block unconditionally (use ensure_block instead to prevent duplicates) |
| Update block name/visibility |
| Permanently delete a block and all its content |
Content | |
| Add color swatches to a Colors block |
| Add font entries to a Typography block |
| Set rich text content (brand story, tone of voice) |
| Set the editorial note displayed above any block |
Upload | |
| Upload a local file into a block (logos, visuals, videos, etc.) with auto-retry |
| Upload multiple local files into the same block; deduplicates by file path |
| Upload and set the kit's header logo |
| Upload and set the kit's cover image |
White-Label Branding (Pro+ Feature)
Customize your portal with custom favicon, social share image, and SEO metadata:
// Upload custom assets
const faviconUrl = await client.uploadFile('favicon.ico', faviconBuffer);
const ogImageUrl = await client.uploadFile('og-image.png', ogImageBuffer);
// Apply white-label branding
await client.updateKit('kit-id', {
og_title: 'Acme Corp Brand Guidelines',
og_description: 'Official brand assets and standards',
custom_favicon_url: faviconUrl,
og_image_url: ogImageUrl,
});Fields:
og_title(string, max 100 chars) — SEO title for social shareog_description(string, max 300 chars) — SEO descriptioncustom_favicon_url(string) — CDN URL to favicon (ICO/PNG/SVG)og_image_url(string) — CDN URL to social share image (1200×630 px recommended)
Plan Requirements:
Free/Starter: White-label fields are read-only
Pro/Agency: Full read-write access
Environment Variables
Variable | Required | Default | Description |
| Yes | — | Personal Access Token ( |
| No |
| API base URL (for local dev) |
Typical Workflow
1. get_workspace → verify connection, check plan and storage
2. list_kits → confirm kit doesn't already exist
3. create_kit → returns kit_id
4. ensure_block → idempotent: returns existing block_id or creates a new one (for each block type)
5. add_colors → populate the Colors block
6. add_typography → populate the Typography block
7. upload_file → upload font/logo/cover files to workspace storage
8. upload_asset → upload logos, images, videos into blocks
9. set_brand_story → write the brand story in a rich_text block
10. set_block_note → add usage guidance to any block
11. publish_kit → make the portal liveReliability Notes (v1.4.0)
No duplicate blocks —
ensure_blockis idempotent. Re-running a workflow never creates duplicate blocks.Auto-retry on uploads —
upload_assetandupload_fileretry up to 3 times on network errors with exponential backoff.Size-aware timeouts — Upload timeout scales with file size (60 s base + 20 s per 10 MB, max 10 min). Large files like 64 MB video assets are handled reliably.
Batch deduplication —
upload_assets_batchsilently skips duplicatefile_pathentries so the same file is never uploaded twice in one batch.Agent instructions — The server now provides operating rules to AI clients at connection time, reducing duplicate operations from AI agents automatically.
White-label URL resolution — CDN URLs in white-label fields are automatically resolved to asset IDs server-side; agents don't need to manage asset IDs directly.
Storage tracking — All file uploads are tracked per workspace for accurate quota enforcement.
License
MIT
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/BrandKity/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server