AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

BrandKity Mcp Server

mcp-brandkity-mcp-server · by BrandKity

BrandKity MCP Server — Create and manage brand kits from AI agents

No reviews yet
0 installs
7 views
0.0% view→install

Install

$ agentstack add mcp-brandkity-mcp-server

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-brandkity-mcp-server)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of BrandKity Mcp Server? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

@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.3 — MCP now available on Starter, Pro, and Agency plans

Quick Start

1. Get an API Key

  1. Sign in at brandkity.com
  2. Go to Settings → API Keys
  3. Click Generate New Key and copy the key (bk_live_...)

> Available on Starter, Pro, and Agency plans. Sign up free to explore, then upgrade Starter or above to run tool calls.

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 | Get workspace info (plan, kit count, storage) | | Files | | | upload_file | Upload any local file to workspace storage → returns a public URL | | list_files | List workspace files with type filter and pagination | | Kits | | | list_kits | List all brand kits (filter by draft/published/all) | | create_kit | Create a new kit → returns kitid | | get_kit | Get a kit with all blocks and content | | update_kit | Update kit settings (name, color, template, logourl, coverimageurl, white-label fields) | | publish_kit | Publish a kit → returns public URL | | unpublish_kit | Unpublish a kit (reverts to draft) | | Blocks | | | list_blocks | List all blocks in a kit with IDs and types | | ensure_block | Idempotent — returns existing blockid or creates a new block (preferred over addblock) | | add_block | Add a block unconditionally (use ensure_block instead to prevent duplicates) | | update_block | Update block name/visibility | | delete_block | Permanently delete a block and all its content | | Content | | | add_colors | Add color swatches to a Colors block | | add_typography | Add font entries to a Typography block | | set_brand_story | Set rich text content (brand story, tone of voice) | | set_block_note | Set the editorial note displayed above any block | | Upload | | | upload_asset | Upload a local file into a block (logos, visuals, videos, etc.) with auto-retry | | upload_assets_batch | Upload multiple local files into the same block; deduplicates by file path | | upload_kit_logo | Upload and set the kit's header logo | | upload_cover_image | 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 share
  • og_description (string, max 300 chars) — SEO description
  • custom_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: White-label fields are read-only; MCP tool calls return 403
  • Starter/Pro/Agency: Full MCP access; white-label fields are read-write on Pro/Agency

Environment Variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | BRANDKITY_API_KEY | Yes | — | Personal Access Token (bk_live_...) | | BRANDKITY_API_URL | No | https://brandkity.com | 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 live

Reliability Notes (v1.4.0)

  • No duplicate blocksensure_block is idempotent. Re-running a workflow never creates duplicate blocks.
  • Auto-retry on uploadsupload_asset and upload_file retry 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 deduplicationupload_assets_batch silently skips duplicate file_path entries 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

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.