MPDS-MCP
Allows GitHub Copilot to manage design system resources such as tokens, components, patterns, and validation through MCP.
Click 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., "@MPDS-MCPvalidate color contrast #333333 on #FFFFFF"
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.
MPDS-MCP
Multi-Project Design System MCP Server — an HTTP server that exposes design tokens, component specs, and validation utilities via a JSON REST API and an MCP JSON-RPC endpoint. Multiple design-system projects can coexist, each with parent-child inheritance for token resolution.
Architecture
modules/
mcp-server/ # Express HTTP server (this binary, port MCP_PORT)
registry/ # Project CRUD (SQLite-backed)
tokens/ # Token storage, overrides, semantic resolution
components/ # Component spec storage and overrides
patterns/ # Pattern library: patterns, variants, composition rules, layout guidelines
validate/ # Color-pair + snippet validation
preview/ # HTML showcase generator (generate_showcase MCP tool)
db/ # Shared SQLite connection + migrationsRelated MCP server: memoire
Running locally
Prerequisites
Node.js 20+ and npm
A writable directory for the SQLite DB (or use
:memory:for a transient session)
Start (development)
npm ci
MCP_SECRET=dev DB_PATH=/tmp/mpds-dev.db MCP_PORT=3100 \
npm --prefix modules/mcp-server run devHealth check:
curl http://localhost:3100/health
# → {"status":"ok"}Start (production build)
npm ci
npm --prefix modules/mcp-server run build
MCP_SECRET=<secret> DB_PATH=/home/mpds/data/mpds.db MPDS_ENV=production \
npm --prefix modules/mcp-server startEnvironment variables
Variable | Required | Default | Description |
| Yes (production) |
| Bearer token — every |
| Yes | — | SQLite file path or |
| No | random port | TCP port the server listens on |
| No | — | Set to |
| No (set by OS/Docker) | — | Used for allowed DB path prefix validation |
API endpoints
All endpoints (except /health) require Authorization: Bearer <MCP_SECRET>.
Error envelope: { "error": { "code": "...", "message": "..." } }
Health
GET /healthProjects
GET /api/projects
POST /api/projects body: { id, name, parentId? }
GET /api/projects/:id
DELETE /api/projects/:idTokens
GET /api/projects/:projectId/tokens
PUT /api/projects/:projectId/tokens/:key body: { value, description? }
DELETE /api/projects/:projectId/tokens/:key/overrideComponents
GET /api/projects/:projectId/components
GET /api/projects/:projectId/components/:componentId
PUT /api/projects/:projectId/components/:componentId/override
DELETE /api/projects/:projectId/components/:componentId/overrideValidation
POST /api/validate/color-pair body: { foreground, background }Patterns
GET /api/projects/:projectId/patterns
POST /api/projects/:projectId/patterns body: { id, name, category, description?, tags?, guidanceUrl? }
GET /api/projects/:projectId/patterns/:patternId
PATCH /api/projects/:projectId/patterns/:patternId body: { name?, description?, tags?, guidanceUrl? }
DELETE /api/projects/:projectId/patterns/:patternIdPattern variants
GET /api/projects/:projectId/patterns/:patternId/variants
POST /api/projects/:projectId/patterns/:patternId/variants body: { name, appliesAt, description? }
GET /api/projects/:projectId/patterns/:patternId/variants/:variantId
PATCH /api/projects/:projectId/patterns/:patternId/variants/:variantId
DELETE /api/projects/:projectId/patterns/:patternId/variants/:variantIdComposition rules
GET /api/projects/:projectId/composition-rules
POST /api/projects/:projectId/composition-rules body: { patternAId, patternBId, relation, guidance? }
DELETE /api/projects/:projectId/composition-rules/:ruleIdrelation enum: NESTING_ALLOWED | NESTING_FORBIDDEN | OVERRIDE_CAUTION | SIBLING_ONLY | EXCLUSIVE
Layout guidelines
GET /api/projects/:projectId/layout-guidelines
POST /api/projects/:projectId/layout-guidelines body: { type, name, description?, data }
GET /api/projects/:projectId/layout-guidelines/:guidelineId
PATCH /api/projects/:projectId/layout-guidelines/:guidelineId
DELETE /api/projects/:projectId/layout-guidelines/:guidelineIdtype enum: breakpoints | spacing | grid | alignment | typography | animation
See contracts/P1/ and contracts/P2/ for the full frozen OpenAPI specs.
MCP configuration
The server exposes a JSON-RPC 2.0 endpoint at POST /mcp (requires the same Authorization: Bearer <MCP_SECRET> header as the REST API). Configure it in your MCP client as an HTTP server.
Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json)
{
"mcpServers": {
"mpds": {
"command": "npx",
"args": ["-y", "mcp-remote", "http://localhost:3100/mcp"],
"env": {
"MCP_REMOTE_HEADER_AUTHORIZATION": "Bearer <MCP_SECRET>"
}
}
}
}Claude Code (.claude/settings.json in your project)
{
"mcpServers": {
"mpds": {
"type": "http",
"url": "http://localhost:3100/mcp",
"headers": {
"Authorization": "Bearer <MCP_SECRET>"
}
}
}
}GitHub Copilot (.vscode/mcp.json in your workspace)
{
"inputs": [
{
"type": "promptString",
"id": "mpds_secret",
"description": "MPDS MCP bearer token",
"password": true
}
],
"servers": {
"mpds": {
"type": "http",
"url": "http://localhost:3100/mcp",
"headers": {
"Authorization": "Bearer ${input:mpds_secret}"
}
}
}
}The input block causes VS Code to prompt for the secret once per session and store it in the system keychain. To skip the prompt, replace ${input:mpds_secret} with the token literal (not recommended for shared workspaces).
OpenCode (opencode.json in your project root, or ~/.config/opencode/opencode.json globally)
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"mpds": {
"type": "remote",
"url": "http://localhost:3100/mcp",
"enabled": true,
"headers": {
"Authorization": "Bearer <MCP_SECRET>"
}
}
}
}To avoid hard-coding the secret, reference an environment variable using OpenCode's {env:VAR} interpolation:
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"mpds": {
"type": "remote",
"url": "http://localhost:3100/mcp",
"enabled": true,
"headers": {
"Authorization": "Bearer {env:MCP_SECRET}"
}
}
}
}Available MCP methods
Read & validate
Method | Description | Required params |
| List all design-system projects | — |
| Resolve tokens for a project (with inheritance) |
|
| Full token map + component specs |
|
| Single component spec |
|
| WCAG contrast ratio |
|
| Contrast check using token keys |
|
| Lint HTML/JSX for a11y issues |
|
| Create a design guideline |
|
| Full-text search guidelines |
|
| Propose a token value change for review |
|
| List pending token proposals |
|
Write — projects & tokens
Method | Description | Required params |
| Create a project |
|
| Rename a project |
|
| Delete a project |
|
| List all tokens for a project |
|
| Get a single token |
|
| Create a token |
|
| Update a token value (OCC) |
|
| Set/override a token value |
|
| Delete a token (OCC) |
|
| Remove a child project override |
|
Write — components
Method | Description | Required params |
| Create a component spec |
|
| Update a component spec (OCC) |
|
| Delete a component spec |
|
Write — pattern library
Method | Description | Required params |
| Create a pattern |
|
| Update a pattern |
|
| Delete a pattern |
|
| Add a variant to a pattern |
|
| Update a variant |
|
| Delete a variant |
|
| Define a pattern relationship |
|
| Remove a composition rule |
|
| Create a layout guideline |
|
| Update a layout guideline |
|
| Delete a layout guideline |
|
Showcase
Method | Description | Required params |
| Generate a self-contained HTML design system preview (color palette, component gallery, pattern library) |
|
# Save and open the showcase locally
curl -s http://localhost:3100/mcp \
-H "Authorization: Bearer <MCP_SECRET>" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"generate_showcase","params":{"projectId":"my-ds"}}' \
| jq -r '.result.html' > /tmp/showcase.html && open /tmp/showcase.htmlAll requests follow JSON-RPC 2.0:
curl -s http://localhost:3100/mcp \
-H "Authorization: Bearer <MCP_SECRET>" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"list_projects","params":{}}' | jqRunning tests
Tests use an in-memory SQLite database and require no external services:
DB_PATH=:memory: MCP_SECRET=test npm testDocker
docker build -t mpds-mcp .
docker run -p 3100:3100 \
-e MCP_SECRET=<secret> \
-e DB_PATH=/home/mpds/data/mpds.db \
-v $(pwd)/data:/home/mpds/data \
mpds-mcpSee INSTALL.md for full setup and docker-compose instructions.
This server cannot be installed
Maintenance
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/nouhouari/mods-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server