Brandkity MCP MCP Server

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

Local serverstdioTypeScript

What is the Brandkity MCP MCP server?

BrandKity MCP Server — Create and manage brand kits from AI agents. That is what the brandkity mcp mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

Model Context Protocol server for BrandKity — create and manage brand kits from any AI agent (Claude Desktop, Cursor, Windsurf, or any MCP-compatible client).

The tools it exposes

The server publishes 14 tools. What each one is for:

  • Workspace — The Workspace tool exposed by this server
  • get_workspace — Get workspace info (plan, kit count, storage)
  • Files — The Files tool exposed by this server
  • upload_file — Upload any local file to workspace storage → returns a public URL
  • list_files — List workspace files with type filter and pagination
  • Kits — The Kits tool exposed by this server
  • list_kits — List all brand kits (filter by draft/published/all)
  • create_kit — Create a new kit → returns kit_id
  • get_kit — Get a kit with all blocks and content
  • update_kit — Update kit settings (name, color, template, logo_url, cover_image_url, white-label fields)
  • publish_kit — Publish a kit → returns public URL
  • unpublish_kit — Unpublish a kit (reverts to draft)

Getting it running

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

What it needs from you

Configuration is passed through the environment: BRANDKITY_API_KEY, BRANDKITY_API_URL. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

How it compares

Among the file and storage access options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Brandkity MCP's toolset — Workspace, get_workspace, Files and 11 more — is a fair guide to whether it matches your workflow. It is maintained by brandkity; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Brandkity MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Brandkity MCP.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
WorkspaceThe Workspace tool exposed by this server.
get_workspaceGet workspace info (plan, kit count, storage)
FilesThe Files tool exposed by this server.
upload_fileUpload any local file to workspace storage → returns a public URL
list_filesList workspace files with type filter and pagination
KitsThe Kits tool exposed by this server.
list_kitsList all brand kits (filter by draft/published/all)
create_kitCreate a new kit → returns kit_id
get_kitGet a kit with all blocks and content
update_kitUpdate kit settings (name, color, template, logo_url, cover_image_url, **white-label fields**)
publish_kitPublish a kit → returns public URL
unpublish_kitUnpublish a kit (reverts to draft)
BlocksThe Blocks tool exposed by this server.
list_blocksList all blocks in a kit with IDs and types

How to install the Brandkity MCP MCP server

{
  "mcpServers": {
    "brandkity": {
      "command": "npx",
      "args": ["-y", "@brandkity/mcp"],
      "env": {
        "BRANDKITY_API_KEY": "bk_live_your_key_here"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
BRANDKITY_API_KEYCredential the server authenticates with.Yes
BRANDKITY_API_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Brandkity MCP to Workspace.
  • Use Brandkity MCP to get workspace.
  • Use Brandkity MCP to Files.

Frequently asked questions

It connects Brandkity MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (Workspace, get_workspace, Files, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Brandkity MCP directly.