Design Systems MCP Server

An AI-powered Model Context Protocol (MCP) server providing intelligent access to authoritative design systems knowledge. Powered by Supabase vector

Remote serverstreamable-httpTypeScript

What is the Design Systems MCP MCP server?

Design systems mcp mcp server connects Design Systems MCP to AI assistants that speak the Model Context Protocol. An AI-powered Model Context Protocol (MCP) server providing intelligent access to authoritative design systems knowledge. Powered by Supabase vector search with 200+ curated entries including W3C standards, WCAG guidelines, and design system best practices.

What Design Systems MCP does

An AI-powered Model Context Protocol (MCP) server providing intelligent access to authoritative design systems knowledge. Powered by Supabase vector search with 200+ curated entries including W3C standards, WCAG guidelines, and design system best practices.

Tools it exposes

Once connected, the assistant can call these 4 tools directly:

  • search_design_knowledge — Search the complete knowledge base with semantic understanding
  • search_chunks — Find specific information within content chunks for detailed answers
  • browse_by_category — The browse_by_category tool exposed by this server
  • get_all_tags — Get all available content tags for filtering and exploration

Installing the design systems mcp mcp server

The server is distributed via npm as wrangler, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Configuration

Before the server will start you need to supply 4 environment variables: OPENAI_API_KEY, SUPABASE_URL, SUPABASE_SERVICE_KEY, SUPABASE_ANON_KEY. Keep credentials in your client's env block or a secrets manager rather than committing them.

Where it fits

Developer-tool servers are usually the first ones people connect, because they turn "help me with this code" into an assistant that can actually read the repo and act on it. Design Systems MCP sits in that group, and the shape of its toolset — search_design_knowledge, search_chunks, browse_by_category among others — tells you what it is really for. Worth comparing against the other developer tools servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This is a hosted server — you point your client at an endpoint rather than running a local process, so there is nothing to keep updated on your machine.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • Maintained by southleft, written in TypeScript.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the design systems mcp mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
search_design_knowledgeSearch the complete knowledge base with semantic understanding.
search_chunksFind specific information within content chunks for detailed answers.
browse_by_categoryThe browse_by_category tool exposed by this server.
get_all_tagsGet all available content tags for filtering and exploration.

How to install the Design Systems MCP MCP server

**Or manually edit `.mcp.json`:**
```json
{
  "mcpServers": {
    "design-systems": {
      "type": "http",
      "url": "https://design-systems-mcp.southleft.com/mcp"
    }
  }
}

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

Configuration

VariableDescriptionRequired
OPENAI_API_KEYCredential the server authenticates with.Yes
SUPABASE_URLEndpoint or connection string the server talks to.Yes
SUPABASE_SERVICE_KEYCredential the server authenticates with.Yes
SUPABASE_ANON_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Design Systems MCP to search design knowledge.
  • Use Design Systems MCP to search chunks.
  • Use Design Systems MCP to browse by category.

Frequently asked questions

It connects Design Systems MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 4 tools (search_design_knowledge, search_chunks, browse_by_category, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Design Systems MCP directly.