state-of-ai-in-design-systems
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., "@state-of-ai-in-design-systemslist the 3 design systems with the most coercion techniques"
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.
State of AI in Design Systems — July 2026
A field survey of how 20 actively maintained open-source design systems make themselves legible to machines, plus the six platforms around them.
For each system: what it ships so coding agents can build with it (MCP servers,
agent skills, llms.txt, editor rules, component registries) and the techniques
that keep a model using real components and tokens instead of inventing its own.
Both directions are covered: AI for consumption (agents building UIs with the
system) and AI for building (the team using AI to maintain the system itself).
Read it: https://state-of-ai-in-design-systems.netlify.app
20 design systems · 6 platforms · 187 affordances · 157 coercion techniques · every snippet linked to its source. Data gathered 26–28 July 2026.

Using it
As a reader, start at the overview: the findings, and all 20 systems against each other at once. Every claim links to the page it came from. Open the link before you cite it. The data is a snapshot and the underlying systems keep moving.
With an AI tool, point one at the report and ask it something. Every route
has a markdown twin and every record has a JSON twin, and
/llms.txt
indexes all of them with measured file sizes so an agent can budget context
before fetching. Paste this into any chat window and the answers come back
grounded in the records, with the source link on each:
Read https://state-of-ai-in-design-systems.netlify.app/llms.txt, then answer from
what you read there and cite the source_url on each record. My question: …Connecting it costs one more step and pays for itself. The server is public
and unauthenticated. It holds no state, and its data tools never write; the
audit prompt below asks your own agent to save a record under
.state-of-ai/ in your working directory:
claude mcp add --transport http --scope user ds-state-of-ai https://state-of-ai-in-design-systems.netlify.app/mcpThat installs the prompts the server ships. Run audit-my-design-system,
then build-my-roadmap: the roadmap finds the audit on its own and hands
back the gaps in the order worth closing them, carrying the record each one
came from so you can read what somebody else did before committing to it.
Setup for every other client: /ai.
As a contributor, the report is wrong in places and corrections are welcome. CONTRIBUTING.md covers how; AGENTS.md is the same ground written for agents. Filing an issue with a link in it is a complete contribution. You don’t need to clone anything.
Related MCP server: @lando-labs/lando-ds-mcp
How it’s built
data/*.json is the only place facts are written. Everything published is
derived from it by one command:
data/*.json ──▶ validate_data.mjs ──▶ every record against schema/*.json,
│ or the build stops here
▼
build_dashboard.py ──▶ dashboard/{index,artifact}.html, data.js
│ build/{payload,routes}.json
▼
build_md.py ──▶ 62 × .md, 33 × .json, llms.txt + slices,
│ public SQLite, sitemap, edge route table,
│ build/{md-map,ai-page-content}.json
▼
build_dashboard.py --final ──▶ same HTML, now carrying the /ai copy
▼
prerender.mjs ──▶ dashboard/<route>/index.html × 29Validation runs first and on the deploy, not only in CI, so a record with a bad
enum or a missing source_url fails the build instead of reaching the site, the
mirrors, the SQLite export and /mcp.
Nothing generated in dashboard/ is written by hand, or committed — Netlify
rebuilds all of it on every deploy. To change a page, edit
dashboard/template.html (markup, CSS, view functions) or a build script, then
rebuild. build_dashboard.py runs twice because the /ai page quotes counts
that only exist once the markdown layer has been compiled and measured.
Adding a view means a line in VIEW_TITLES, a line in NAV, and a view function
in template.html; the route table, the sitemap and prerender follow from there.
The markdown layer does not. A twin needs its own builder function plus an entry
in VIEW_META, HTML_TWIN, the html_routes table that feeds the edge
function, the llms.txt listing, the fixed-section table in mcp.mjs, and the
report-path list the MCP suite checks against. The build catches a missing nav
entry and an empty route; it does not catch a view that never reached the
markdown layer, so work through that list rather than trusting the first two.
What gets published
Path | What it is |
| The site, prerendered: 27 routes plus a static 404, real HTML for crawlers that don’t run JS |
| The payload every page loads ( |
| The same site as one file: hash routing, no |
| Markdown twin of every route, plus 15 |
| Typed twin of every system and platform record |
| The router: staleness note, retrieval contract, vocabulary, every file with its measured size |
| Concatenated documentation sets, sliced by concern for context budgets |
|
|
| The MCP server at |
| Serves the markdown twin when a client sends |
| WebMCP: 4 page tools behind one feature check |
| The page documenting all of the above, mirrored at |
Developing
Node 24 and Python 3.12, pinned in .nvmrc and runtime.txt. Building needs no
Python packages.
npm install
npm run check # everything CI runs, in one command
./scripts/build.sh # everything; fails loudly on an empty route
npm test # MCP server suite, no ports
netlify serve # site + functions + edge functions locally
npx @modelcontextprotocol/inspector --cli http://localhost:8888/mcp \
--transport http --method tools/listDeploying
A push to main deploys production. Netlify runs ./scripts/build.sh, publishes
what it writes to dashboard/, bundles the function with esbuild and picks up the
edge function. There is no SPA fallback: every route is a real file, and anything
else gets an honest 404.
Because the deploy builds from source, nothing generated is committed and no local build is needed before pushing. The build validates every record against its schema first, so a bad record fails the deploy rather than reaching the site.
To deploy by hand — a preview, or from a branch:
./scripts/build.sh && netlify deploy --prodBuild first when you do. netlify/functions/mcp.mjs imports two files from
build/, which is generated and not committed.
Querying the data
-- Who ships official MCP servers?
SELECT s.name, a.name FROM affordances a JOIN systems s ON s.id = a.system_id
WHERE a.type = 'mcp-server' AND a.official = 1;
-- All tool-gating tricks, with receipts
SELECT s.name, t.name, t.snippet_source_url FROM techniques t
JOIN systems s ON s.id = t.system_id WHERE t.category = 'tool-gating';Both run unchanged against
/data/state-of-ai.sqlite.
How it was made
Every record was cataloged against a fixed schema, quoting files verbatim, with each claim linked to the page it was taken from. Open the link and you can check the claim yourself. The methodology page covers how the set was picked, what counted as an affordance or a technique, the maturity rubric, and the caveats.
Two engineering notes live in this repository:
docs/architecture.md for why the site is built the way
it is, and docs/design-audit.md for the open design
work against the rendered pages.
Licensing
Two licenses, because this repository is two things.
What | License | |
Code — build scripts, site template, MCP server, edge function, tests | MIT | |
Data and report text — | CC BY 4.0 |
The records describe third-party design systems and quote them under fair use with attribution; that source material stays under its own license. CC BY 4.0 covers the survey, not the things surveyed.
Citation
Deloumeau-Prigent, K. (2026). State of AI in Design Systems.
https://state-of-ai-in-design-systems.netlify.app@misc{deloumeauprigent2026stateofai,
author = {Deloumeau-Prigent, Kaelig},
title = {State of AI in Design Systems},
year = {2026},
month = {7},
howpublished = {\url{https://state-of-ai-in-design-systems.netlify.app}},
note = {Data gathered 26--28 July 2026}
}Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
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.
Related MCP Connectors
Read-only MCP tools for AI agent discovery, structured resources, and NIULAI information.
MCP server for agentverse documentation, generated by doc2mcp.
Read-only MCP server for the OPERANT AI operating-agent calibration benchmark.
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceA read-only MCP server that provides AI coding agents with a queryable contract for design system tokens, components, patterns, and anti-patterns.201Apache 2.0
- AlicenseAqualityAmaintenanceMCP server for the Lando Labs Design System, enabling AI agents to introspect and generate code for React components, hooks, icons, design tokens, and theme presets via 15 tools.15241Apache 2.0
- AlicenseAqualityAmaintenanceRead-only MCP server that exposes a design system's tokens, components, conventions, and deprecations as queryable tools, enabling agents to look up canonical values, assess change impact, and detect hardcoded value drift.83MIT

Jinero MCP Serverofficial
AlicenseNot gradedqualityBmaintenanceProvides AI agents with 22 read-only design tools: font search and recognition, color contrast/shades/naming, palette extraction, code minification and detection, and SVG optimization. It's a free, hosted remote MCP server with no auth, rate-limited at 60 req/min per IP.1MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/kaelig/state-of-ai-in-design-systems'
If you have feedback or need assistance with the MCP directory API, please join our Discord server