Modus Design System logo

Modus Design System

Community
julianoczkowski

This MCP server gives AI assistants (like Cursor, Claude, VS Code) access to complete Modus 2.0 Web Components documentation.

Publisherjulianoczkowski
Repositorymcp-modus
LanguageJavaScript
Forks
2
Stars
5
Available tools
10
Transport typestdio, streamable-http
Categories
LicenseMIT
Links
  • Connect tools to AI workflows

    Modus Design System exposes MCP capabilities that can be used by compatible AI clients and agents.

  • 10 available tools

    Browse the callable actions below, including names and descriptions when provided by the server.

  • Ready-to-copy setup

    Use the installation snippets to configure this server in your preferred MCP client.

  • Open source signals

    5 stars and 2 forks from the linked repository.

MCP Modus

NPM Version License: MIT

AI assistant for Modus Web Components - Get instant help with component documentation, design rules, and setup guides directly in your IDE.

What This Does

This MCP server gives AI assistants (like Cursor, Claude, VS Code) access to complete Modus Web Components documentation. Ask questions like:

  • "How do I use a Modus button with primary color?"
  • "What are the Modus color guidelines?"
  • "Show me how to set up a React project with Modus components"
  • "Which components have a disabled attribute?"

Setup

Choose one of the two options below:

Option 1: NPX (Recommended - No Installation)

For any IDE with MCP support:

json
{
  "mcpServers": {
    "modus-docs": {
      "command": "npx",
      "args": ["-y", "@julianoczkowski/mcp-modus"]
    }
  }
}

Benefits: No installation required, always uses latest version, no permission issues, secure pre-bundled documentation.

Option 2: Global Install

  1. Install globally:

    bash
    npm install -g @julianoczkowski/mcp-modus

    Note: On some systems, you may need sudo npm install -g @julianoczkowski/mcp-modus

  2. Use this config:

    json
    {
      "mcpServers": {
        "modus-docs": {
          "command": "mcp-modus"
        }
      }
    }

Benefits: Faster startup, works offline after installation, secure pre-bundled documentation.

IDE-Specific Instructions

For Cursor IDE

  1. Go to Settings → Features → MCP
  2. Click "Add New MCP Server"
  3. Use one of the JSON configs above

For VS Code (with Continue)

Add to ~/.continue/config.json using one of the JSON configs above.

For Claude Desktop

Add to your config file using one of the JSON configs above:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%/Claude/claude_desktop_config.json

What You Get

📚 Component Documentation (49 components)

Complete API documentation for all Modus Web Components including attributes, events, methods, slots, and usage examples.

ComponentDescription
modus-wc-accordionExpandable/collapsible content sections
modus-wc-alertContextual feedback messages
modus-wc-autocompleteText input with suggestions
modus-wc-avatarUser profile images
modus-wc-badgeStatus indicators and labels
modus-wc-breadcrumbsNavigation path indicators
modus-wc-buttonInteractive action buttons
modus-wc-button-groupGrouped buttons with selection modes
modus-wc-cardContent container with elevation
modus-wc-checkboxBoolean input control
modus-wc-chipCompact interactive elements
modus-wc-collapseAnimated show/hide content
modus-wc-dateDate picker input
modus-wc-dividerVisual content separator
modus-wc-dropdown-menuContextual menu with trigger
modus-wc-file-dropzoneDrag-and-drop file upload
modus-wc-handleResizable panel divider
modus-wc-iconModus icon display
modus-wc-input-feedbackForm validation messages
modus-wc-input-labelForm field labels
modus-wc-loaderLoading state indicators
modus-wc-logoTrimble/Viewpoint brand logos
modus-wc-menuNavigation menu container
modus-wc-menu-itemMenu navigation items
modus-wc-modalDialog overlays
modus-wc-navbarTop navigation bar
modus-wc-number-inputNumeric input with controls
modus-wc-paginationPage navigation controls
modus-wc-panelStructured layout container
modus-wc-progressProgress indicators
modus-wc-radioSingle-select option control
modus-wc-ratingStar rating input
modus-wc-selectDropdown selection input
modus-wc-side-navigationSidebar navigation
modus-wc-skeletonLoading placeholder
modus-wc-sliderRange value selector
modus-wc-stepperMulti-step process indicator
modus-wc-switchToggle on/off control
modus-wc-tableData table display
modus-wc-tabsTabbed content navigation
modus-wc-text-inputSingle-line text input
modus-wc-textareaMulti-line text input
modus-wc-theme-switcherTheme selection control
modus-wc-time-inputTime picker input
modus-wc-toastNotification messages
modus-wc-toolbarAction button container
modus-wc-tooltipContextual hover information
modus-wc-typographyText styling component
modus-wc-utility-panelSlide-out utility panel

🎨 Design System Rules (6 guides)

Comprehensive design guidelines for building consistent Modus applications.

GuideCoverage
modus_colorsColor tokens, semantic colors, theme palettes
modus_iconsIcon names, sizes, usage guidelines
typographyFont families, sizes, weights, line heights
spacingSpacing scale, margins, padding values
breakpointsResponsive breakpoints, media queries
radius_strokeBorder radius values, stroke widths

⚙️ Project Setup Guides (5 guides)

Step-by-step instructions for integrating Modus Web Components.

GuideCoverage
setup_htmlHTML project setup, CDN usage, basic integration
setup_reactReact project setup, npm installation, component usage
theme_usageTheme implementation, light/dark modes, customization
testingTesting guidelines, accessibility testing, best practices
universal_rulesGeneral development rules, coding standards

Example Usage

Once configured, ask your AI assistant:

"Create a Modus button with warning color and medium size"
"What spacing values should I use in my Modus design?"
"How do I set up a new React project with Modus Web Components?"
"Show me all Modus form components"
"What are the available Modus color tokens?"

The AI will use the MCP server to fetch the latest documentation and provide accurate, up-to-date answers.

Security & Reliability

  • 🔒 Pre-bundled Documentation: All documentation is included with the package - no runtime downloads
  • 🛡️ No External Dependencies: Runs completely offline after installation
  • ✅ Verified Content: Documentation is verified during our CI/CD process
  • 🚀 Fast & Secure: No network requests during operation
  • 🔐 Secure Publishing: Uses npm Trusted Publishers (OIDC) for secure, automated releases with automatic provenance attestation

Troubleshooting

Server Not Connecting

  • Ensure Node.js 20+ is installed: node --version (required for npm 11.5.1+ which supports OIDC)
  • For global install: verify with mcp-modus --help
  • Check IDE logs for error messages

Documentation Updates

Documentation is pre-bundled with each release for security and reliability. No downloads occur during installation or runtime.

Uninstalling

If you used the NPX option (Option 1), no permanent installation exists. NPX downloads are temporary.

If you used the Global Install option (Option 2), uninstall with:

bash
npm uninstall -g @julianoczkowski/mcp-modus

Need Help?


Built for developers using Modus Web Components | MIT License | Made by Julian Oczkowski

Installation

TypingMind
Prerequisites:

Node.js 18+

{
  "mcpServers": {
    "modus-docs": {
      "command": "npx",
      "args": [
        "-y",
        "@julianoczkowski/mcp-modus"
      ]
    }
  }
}

Available Tools

  • search_components

    Search for Modus Web Components by name or keyword. Returns a list of matching components with brief descriptions.

  • get_component_docs

    Get the complete documentation for a specific Modus Web Component including attributes, events, and usage examples.

  • list_all_components

    List all available Modus Web Components with their categories.

  • find_by_attribute

    Find components that have a specific attribute or property.

  • get_design_rules

    Get specific design rules for Modus Web Components (colors, icons, spacing, typography, etc.).

  • search_design_rules

    Search across all design rules by keyword or term.

  • list_design_categories

    List all available design rule categories.

  • get_setup_guide

    Get setup instructions for HTML or React projects using Modus Web Components.

  • get_theme_usage

    Get theme implementation guidelines and usage instructions.

  • get_development_rules

    Get universal development rules and best practices for Modus Web Components.

Use Modus Design System MCP with multiple AI models

TypingMind connects MCP tools at the workspace level, so once Modus Design System is connected, you can use it with different AI models in TypingMind instead of setting it up separately for each model. You can run MCP locally on your device or connect to a remote MCP server URL.

Option 1: Use the local connector

Use this when the MCP server needs access to local files, apps, or private resources on your computer.

1

Open the MCP settings

In TypingMind, go to Settings, Advanced Settings, then Model Context Protocol and choose Setup Connector.

  1. Open TypingMind in your browser.
  2. Click the Settings icon.
  3. Go to Advanced Settings.
  4. Open the Model Context Protocol section.
  5. Click Setup Connector and choose This Device.
TypingMind MCP connector setup screen with This Device selected
2

Run the connector command

Choose This Device, copy the command from TypingMind, and run it in Terminal. Keep the process running while you use MCP.

  1. Copy the setup command shown by TypingMind.
  2. Open Terminal on macOS or Windows Terminal on Windows.
  3. Paste and run the command.
  4. Approve the package install if Terminal asks you to proceed.
  5. Keep the Terminal window running while using MCP tools.
3

Add Modus Design System as a server

When the connector status is Ready, click Edit Servers and paste the MCP server configuration.

  1. Wait until the connector status shows Ready.
  2. Click Edit Servers.
  3. Paste the Modus Design System MCP server configuration.
  4. Save the server list.
  5. Refresh if you want to confirm the connector is still ready.
TypingMind MCP settings showing active server and Edit Servers button
{
  "mcpServers": {
    "modus-design-system": {
      "command": "npx",
      "args": [
        "-y",
        "@julianoczkowski/mcp-modus"
      ]
    }
  }
}
4

Use it across models

Save the server list, open Plugins, enable the Modus Design System MCP tools, then select any supported AI model in TypingMind and use the tools in chat or assign them to an AI agent.

  1. Open the Plugins page in TypingMind.
  2. Enable the Modus Design System MCP tools.
  3. Start a chat and choose the AI model you want to use.
  4. Use the MCP tools in chat or assign them to an AI agent.
  5. Switch to another AI model whenever needed without reconnecting MCP.
TypingMind chat using enabled MCP tools with a selected AI model
Can you use Modus Design System to help me with this task?
Modus Design System
Sure. I read it.
Here is what I found using Modus Design System.

Option 2: Add an MCP server URL

Use this when Modus Design System is already hosted remotely or your team wants one shared connector that multiple users can access.

1

Open MCP connectors

In TypingMind, go to Plugins, open MCP connectors, then choose Add URL.

  1. Open TypingMind in your browser.
  2. Go to Plugins.
  3. Open MCP connectors.
  4. Click Add URL.
TypingMind Add Custom MCP Server URL form
2

Paste the server URL

Enter your server URL in the Server URL field. Add a connection name, description, icon, custom HTTP headers, or OAuth client settings if the server requires them.

  1. Paste your server URL into the Server URL field.
  2. Enter a connection name for Modus Design System.
  3. Add a description and icon if you want it to be easier to identify.
  4. Add custom HTTP headers or OAuth client details if the server requires authentication.
3

Create the connection

Click Create connection, then return to the Plugins list and confirm the new MCP connection is active.

  1. Click Create connection.
  2. Return to the MCP connectors list.
  3. Confirm the Modus Design System connection appears as active.
  4. Refresh the plugin list if the connection does not appear immediately.
4

Switch models without reconnecting

Start a chat with your preferred model, enable the Modus Design System tools from Plugins, and switch to another model whenever needed. The MCP connection stays available to the TypingMind workspace.

  1. Start a new chat in TypingMind.
  2. Select the AI model you want to use.
  3. Enable the Modus Design System tools from Plugins.
  4. Ask the model to use the tool when needed.
  5. Switch to another AI model and reuse the same MCP connection.
TypingMind chat using enabled MCP tools with a selected AI model
Can you use Modus Design System to help me with this task?
Modus Design System
Sure. I read it.
Here is what I found using Modus Design System.

Frequently asked questions

What is the Modus Design System MCP server used for?

Modus Design System is an MCP server that lets compatible AI clients connect to external tools and context. In TypingMind, you can add this MCP server once and make its tools available in your AI workspace.

Can I use Modus Design System MCP with multiple AI models in TypingMind?

Yes. TypingMind connects MCP tools at the workspace level, so you can use Modus Design System with different AI models such as Claude, ChatGPT, Gemini, or other models you have configured in TypingMind without setting up the MCP server separately for each model.

Why use Modus Design System MCP with TypingMind?

TypingMind is one of the best frontends for LLM chat because it brings multiple AI models, prompts, plugins, AI agents, API keys, and MCP tools into one workspace. With Modus Design System connected, you can use its MCP tools across your preferred models while keeping your chat workflow organized in TypingMind.

How do I connect Modus Design System MCP to TypingMind?

Modus Design System can be connected in TypingMind with the local MCP connector or by adding a remote MCP server URL. Use the local connector when the server needs access to files, apps, or private resources on your device, and use a server URL when the MCP server is hosted remotely.

What tools does Modus Design System MCP provide in TypingMind?

Modus Design System exposes 10 MCP tools that can be enabled from the TypingMind Plugins page and used in chat or assigned to AI agents.

Do I need to share my API keys with TypingMind to use Modus Design System MCP?

No. TypingMind is local-first and lets you keep your model providers, API keys, prompts, and MCP configuration under your control. If Modus Design System requires authentication, add the required headers, OAuth settings, or local configuration for that MCP server when you create the connection.

Related MCP Servers

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇