- Home
- MCP servers
- Modus
Modus
- javascript
5
GitHub Stars
javascript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"julianoczkowski-mcp-modus": {
"command": "npx",
"args": [
"-y",
"@julianoczkowski/mcp-modus"
]
}
}
}You can use this MCP server to provide Modus Web Components documentation to your AI assistants and IDEs. It enables quick, offline access to component APIs, design guidelines, and setup guides, so you can ask questions like how to use a Modus button or set up a React project with Modus components. This server supports two convenient installation modes and can be configured in your MCP client to keep the documentation readily available.
How to use
To use this MCP server with an MCP client, configure a server entry that points to the provided commands. You can run the server via NPX for a no-install option, or use a global installation for faster startup and offline operation. Once configured, your AI assistant can fetch the latest Modus Web Components documentation and respond with accurate guidance.
How to install
Prerequisites: You need Node.js installed on your system. You can verify installation with the following command.
node --version
Option 1: NPX (Recommended — No Installation) Use this if you want to avoid installing anything on your system. Add this MCP server configuration to your MCP client.
"mcpServers": {
"modus_docs": {
"command": "npx",
"args": ["-y", "@julianoczkowski/mcp-modus"]
}
}
Option 2: Global Install Install the package globally so you can start the MCP server directly from your shell.
npm install -g @julianoczkowski/mcp-modus
After installation, use this MCP server configuration.
"mcpServers": {
"modus_docs": {
"command": "mcp-modus",
"args": []
}
}
Configuration and usage notes
Choose a single MCP server entry that aligns with your preferred workflow. NPX uses the latest version each time you run, while the global install keeps the tool on your machine for faster startups and offline access.
Security and reliability
The documentation is bundled with the MCP server package for offline use. No external downloads are required at runtime, providing a secure and reliable experience.
Troubleshooting
If you encounter connection issues, ensure Node.js 20 or later is installed and verify the MCP server configuration in your IDE or client. For NPX, you can test visibility by listing available MCP commands.
node --version
Uninstalling
If you used NPX, no permanent installation exists. If you used the global install, remove it with the following command.
npm uninstall -g @julianoczkowski/mcp-modus
Need help
If you need assistance, reach out to the Modus Web Components community channels for guidance and support.