← marmoui.com

INDIVIDUAL MCP TOOL

get_design_md

Generate a portable DESIGN.

marmoui.comnone authenticationAvailability not checked

LIVE ENDPOINT

https://mcp.marmoui.com/mcp

No auth detected

Connect to this endpoint to inspect the live schema for get_design_md and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent server

marmoui.com

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.design-system-mcp]
url = "https://mcp.marmoui.com/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "design-system-mcp": {
      "type": "http",
      "url": "https://mcp.marmoui.com/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: design-system-mcp
Remote MCP URL: https://mcp.marmoui.com/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "design-system-mcp": {
      "url": "https://mcp.marmoui.com/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "design-system-mcp": {
      "type": "http",
      "url": "https://mcp.marmoui.com/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "design-system-mcp",
  "transport": "streamable-http",
  "url": "https://mcp.marmoui.com/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • get_knowledge_version — Returns the MCP knowledge version: gitSha, indexedAt, componentCount, patternCount, uptimeSeconds.
  • get_design_guidelines — MANDATORY FIRST CALL before writing any @marmoui/ui code in this session.
  • list_components — List all available @marmoui/ui components with names, descriptions, categories, and prop counts.
  • search_components — Search @marmoui/ui by keyword (e.
  • get_component_info — Get exact props (with types and defaults), code examples, composition patterns, and common mistakes for a single @marmoui/ui component.
  • get_pattern — Get a complete, validated composition example for a common UI pattern.
  • review_generated_code — ⚠️ MANDATORY — call this on every piece of code you generate before returning it to the user.
  • validate_component_usage — Validate a TSX/JSX snippet against real @marmoui/ui prop signatures.