@lumeo-ui/mcp-server
v2.0.0-rc.54
Published
Model Context Protocol server for the Lumeo Blazor component library. Lets LLMs (Claude, Copilot, Cursor) author correct Lumeo markup.
Maintainers
Readme
@lumeo-ui/mcp-server
A Model Context Protocol server that exposes the Lumeo Blazor component library to MCP-compatible LLM clients (Claude Desktop, Cursor, GitHub Copilot, Zed, etc.).
Once installed, your LLM can look up real Lumeo parameters, slots, and usage examples — so "build me a sign-in page with Lumeo" produces markup that actually compiles.
What it exposes
The server covers all 125 components from Lumeo's generated
registry.json. The top ~35 most-used components ship with rich, hand-curated
schemas (parameters, slots, ready-to-use Razor examples, CSS variables); the
remaining ~90 are still discoverable and returned with category / description /
files / dependencies / CSS variables plus a link back to the docs site for full
reference. As more components get curated, the rich count grows automatically.
Tools
lumeo_list_components({ category?, query? })— list all 125 componentslumeo_get_component({ name })— rich schema if curated; thin + docs link otherwiselumeo_search({ query })— fuzzy search across all 125
Resources
lumeo://component/{Name}— markdown reference per componentlumeo://category/{Name}— overview of all components in a category
Install
cd tools/lumeo-mcp
npm install
npm run buildThis produces dist/index.js, a Node ESM entrypoint.
Future:
npx -y @lumeo-ui/mcp-serveronce published to npm.
Configure your MCP client
Claude Desktop
Edit claude_desktop_config.json (Settings → Developer → Edit Config):
{
"mcpServers": {
"lumeo": {
"command": "node",
"args": ["C:/Users/bemi/RiderProjects/Lumeo/tools/lumeo-mcp/dist/index.js"]
}
}
}Restart Claude Desktop. You should see the Lumeo tools/resources under the connectors panel.
Cursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"lumeo": {
"command": "node",
"args": ["/absolute/path/to/lumeo-mcp/dist/index.js"]
}
}
}VS Code (GitHub Copilot)
Add to .vscode/mcp.json:
{
"servers": {
"lumeo": {
"type": "stdio",
"command": "node",
"args": ["/absolute/path/to/lumeo-mcp/dist/index.js"]
}
}
}Try it
After installing, ask your LLM:
Build me a dashboard with three KpiCards using Lumeo.
or
Show me how to build a sign-in page with Lumeo — email, password, and a submit button with validation.
The model will call lumeo_search + lumeo_get_component under the hood and
produce markup that uses the correct parameter names, two-way bindings, and
slot conventions.
Development
npm run dev # tsc --watch
npm start # run the built serverThe component catalog is built at startup by merging two sources:
src/components.ts— hand-curated rich entries (top ~35) with fullparams,slots, andexamplefieldssrc/registry.json— the full 125-component registry, copied fromsrc/Lumeo/registry/registry.jsonatprebuildtime byscripts/sync-registry.mjs
To enrich a thin entry, add a full entry for it in src/components.ts — the
merge layer will automatically upgrade it to the rich schema.
License
MIT
