component-contracts
Manages variant manifests, design token mappings, and structural contracts between Figma and code, enabling variant lifecycle management and diff classification.
Provides accessibility contracts, composition patterns, keyboard interactions, and caveats for Radix UI primitives to ensure accessible component composition.
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., "@component-contractsShow me the accessibility contract for Dialog"
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.
component-contracts
Two MCP servers that form the authority layer for design-to-code component lifecycles.
Overview
Variant Authority is the engineering contract for your component library. It defines what variants exist on a component, what slots are required, how design tokens map between Figma and code, and what happens when a component is deprecated. When a variant surface changes, it classifies the diff as major, minor, or patch so consumers know the impact before shipping.
Radix Primitives is the accessibility foundation. It maps component types to Radix UI primitives, exposes the ARIA contracts and keyboard interactions that come free with each primitive, and documents known caveats and workarounds. Together, these two servers are the source of truth that d2c operates on -- one for structural correctness, the other for accessible composition.
Related MCP server: memoire
Tool surface
Variant Authority (5 tools)
Tool | Description |
| Returns the full variant manifest |
| Writes or updates a manifest, validates with |
| Scans workspace for files importing the component |
| Classifies changes as major/minor/patch |
| Validates variant values and required slots |
Radix Primitives (4 tools)
Tool | Description |
| Returns accessibility contract, composition pattern, caveats |
| Maps a component type to its Radix primitive |
| Returns known issues and workarounds |
| Enumerates all 16 available primitives |
VariantManifest schema
interface VariantManifest {
component: string;
version: string;
figmaFileKey: string;
figmaNodeId: string;
variants: Record<string, VariantDefinition>;
slots: SlotDefinition[];
tokens: Record<string, TokenBinding>;
authority: AuthorityMap;
deprecated?: DeprecationInfo;
semanticTokenFile?: string;
createdAt: string;
updatedAt: string;
}
interface VariantDefinition {
values: string[];
defaultValue: string;
type: "string" | "boolean" | "number";
description?: string;
}
interface SlotDefinition {
name: string;
required: boolean;
description?: string;
}
interface TokenBinding {
figmaValue: string;
codeValue: string;
dtcgPath: string;
category: "color" | "spacing" | "typography" | "border" | "shadow" | "opacity";
}
interface AuthorityMap {
structure: "figma" | "cva";
visual: "figma" | "cva";
conflictStrategy: "escalate" | "figma-wins" | "cva-wins";
}
interface DeprecationInfo {
deprecated: true;
replacedBy: string;
migrationGuide: string;
deprecatedAt: string;
removalTarget?: string;
}PrimitiveCapability schema
interface PrimitiveCapability {
name: string;
radixPackage: string | null;
vuePackage: string | null;
accessibilityContract: {
role: string;
keyboardInteractions: string[];
ariaAttributes: string[];
};
compositionPattern: string;
caveats: string[];
recommendedFor: string[];
avoidFor: string[];
version: string;
}Installation
Claude Code
claude mcp add variant-authority -- npx tsx src/variant-authority/server.ts
claude mcp add radix-primitives -- npx tsx src/radix-primitives/server.tsCursor
In .cursor/mcp.json:
{
"mcpServers": {
"variant-authority": {
"command": "npx",
"args": ["tsx", "src/variant-authority/server.ts"]
},
"radix-primitives": {
"command": "npx",
"args": ["tsx", "src/radix-primitives/server.ts"]
}
}
}Codex CLI
codex mcp add variant-authority -- npx tsx src/variant-authority/server.ts
codex mcp add radix-primitives -- npx tsx src/radix-primitives/server.tsDevelopment
npm scripts
Script | Purpose |
| Compile TypeScript with |
| Run tests with Vitest |
| Start variant-authority server in dev mode |
| Start radix-primitives server in dev mode |
Project structure
component-contracts/
src/
variant-authority/
server.ts MCP server entry point
registry.ts JSON registry read/write
radix-primitives/
server.ts MCP server entry point
capability-map.ts Static primitive data
shared/
schemas.ts TypeScript interfaces + validation
errors.ts Shared error types
dist/ Compiled output
.variant-authority/ Registry storage (gitignored in consuming repos)Relationship to d2c
component-contracts provides the authority layer. d2c provides the lifecycle operator. During its phases, d2c calls these MCP servers to read and write variant manifests, query primitive mappings, and validate component usage. The two packages are designed to work together but can be used independently -- any tooling that needs a persistent variant registry or a Radix capability map can consume these servers directly.
License
MIT
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/jeremysykes/component-contracts'
If you have feedback or need assistance with the MCP directory API, please join our Discord server