@lando-labs/lando-ds-mcp
MCP 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.
README
@lando-labs/lando-ds-mcp
MCP server for the Lando Labs Design System. Gives AI agents authoritative introspection and code-generation for 127 React components, 19 utility hooks, 70 brand icons, ~1,500 Lucide icons, six token categories, and multiple theme presets — all sourced from the DS's own emitted metadata (@lando-labs/lando-ds-meta), always current with each DS release.
Built on the Model Context Protocol. Works with Claude Code, Claude Desktop, Cursor, Windsurf, Zed, and any MCP-compatible client.
What it does
Exposes 15 tools to any MCP-connected AI client:
| Tool | Purpose |
|---|---|
list_components |
Enumerate DS components, filter by category / capability / deprecation |
get_component |
Generate ready-to-use JSX for a component with props, children, and correct imports |
get_component_props |
TypeScript-style props interface for any component |
get_component_reference |
Full reference: description + examples + composes + props in one call |
get_component_capabilities |
Capability matrix — RSC-safe, polymorphic, forwardRef, deprecated |
get_composition_hints |
Which components officially compose with a given one (from meta) |
compose_components |
Merge multiple components into one snippet with unified imports |
get_design_tokens |
Design tokens (colors, spacing, typography, radius, shadows, motion) in CSS, hex, or both |
get_animation_examples |
Curated animation patterns with CSS keyframes and reduced-motion handling |
get_theme_presets |
Available theme presets (default brand-neutral; opt-in lando, forest, midnight, rose, slate, sunset) |
list_icons |
Browse icons: ds-brand (~70), lucide (full ~1,500-icon catalog; ~80 with rich metadata, the rest by name), or all |
search_icons |
Semantic search across icon catalogs with confidence-ranked results |
list_hooks |
Enumerate DS utility hooks (state, dom, browser, a11y, …), filter by category / RSC safety |
get_hook |
Full detail for a single hook — signature, returns, RSC safety, subpath, description |
get_ds_metadata |
DS package version, meta schema version, component/token/icon/hook summary |
Every tool reads from @lando-labs/lando-ds-meta — the DS's self-describing metadata, shipped as a zero-dependency JSON npm package. When the DS ships new components, deprecates old ones, or renames tokens, the MCP surfaces the change on the next content refresh with zero code changes.
Install + connect
You need Node.js 18 or later.
Claude Code
npm install -g @lando-labs/lando-ds-mcp
claude mcp add lando-ds lando-ds-mcp
Or via ~/.claude.json:
{
"mcpServers": {
"lando-ds": {
"command": "lando-ds-mcp"
}
}
}
Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or the equivalent on Windows/Linux:
{
"mcpServers": {
"lando-ds": {
"command": "npx",
"args": ["-y", "@lando-labs/lando-ds-mcp"]
}
}
}
Restart Claude Desktop after saving.
Cursor
Edit ~/.cursor/mcp.json:
{
"mcpServers": {
"lando-ds": {
"command": "npx",
"args": ["-y", "@lando-labs/lando-ds-mcp"]
}
}
}
Windsurf
Edit ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"lando-ds": {
"command": "npx",
"args": ["-y", "@lando-labs/lando-ds-mcp"]
}
}
}
Zed
Zed uses context servers configured via ~/.config/zed/settings.json:
{
"context_servers": {
"lando-ds": {
"command": {
"path": "npx",
"args": ["-y", "@lando-labs/lando-ds-mcp"]
}
}
}
}
Generic MCP client
The server speaks MCP over stdio. Invoke lando-ds-mcp (after npm install -g) or npx @lando-labs/lando-ds-mcp.
Verify
After connecting, ask your agent to call get_ds_metadata. It should reply with the DS version, component count, and tool summary. If it does, you're wired up.
What it does not do
- Not a UI library. The MCP tells agents about DS components — the actual components live in
@lando-labs/lando-dsand must be installed in your project separately. - Not a code generator standalone. Runs as an MCP server; needs an MCP client to invoke it.
- Not a project scanner. Every tool reads from DS meta; nothing scans your project source. A future release may add DS-adoption auditing tools; not yet.
- Not Vue/Svelte/Angular compatible. The DS is React; the MCP's code-generation output is JSX.
- Not React Native compatible. The DS is web-only as of v0.57.0.
How it works
The DS publishes @lando-labs/lando-ds-meta — a zero-dependency npm package with meta.json (light) and meta.verbose.json (with descriptions, examples, and composition hints). The MCP takes a semver dep on it and exposes the data through the 15 tools above. npm update @lando-labs/lando-ds-meta is the whole content-refresh workflow.
Because meta is the source of truth, the MCP is a thin protocol adapter over emitted metadata — no synthesis of information the DS didn't emit.
Contributing
Contributions welcome — file an issue or open a PR. Some context up front:
- Development setup:
git clone, thennpm install && npm run build && npm test. Nothing else — DS meta arrives via npm. - Meta compatibility: MCP consumes DS meta schema
^1.x. Schema major bumps require an MCP major bump. - Testing:
npm testuses a custom runner insrc/test.ts. - Version discipline: version strings live in
package.json,src/index.ts, andCHANGELOG.md. The version-sync tests fail CI if these drift.
Issues: github.com/lando-labs/lando-ds-mcp/issues Security disclosures: see MAINTAINERS.md. Maintainers: MAINTAINERS.md.
License
Apache License 2.0. See LICENSE for full terms and NOTICE for attribution.
Copyright 2026 Lando Labs.
Related
- @lando-labs/lando-ds — The design system itself. React web components; the source of truth the MCP reflects.
- @lando-labs/lando-ds-meta — Zero-dependency JSON metadata subpackage the MCP consumes at runtime. Updating the MCP's DS content is
npm update @lando-labs/lando-ds-meta.
First published to public npm and public GitHub as @lando-labs/lando-ds-mcp@4.0.0 on 2026-07-16, alongside @lando-labs/lando-ds@0.57.0 and @lando-labs/lando-ds-meta@0.57.0.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.