npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@trimble-oss/modus-mcp-server

v1.0.2

Published

An MCP server providing information about Modus React form and UI components

Readme

Modus MCP Server

An MCP (Model Context Protocol) server providing comprehensive information about Modus Design System React components, including properties, events, usage examples, and installation guidelines.

Features

  • 🎨 Complete Component Library: Access to all Modus 2.0 Web Components
  • 📚 Rich Documentation: Properties, events, methods, and usage examples
  • 🔍 Icon Search: Search through Modus icon library with prefix filtering
  • 📖 Installation Guidelines: Step-by-step setup instructions
  • 🚀 stdio Transport: Optimized for local MCP client integration

Installation

Global Installation (Recommended)

npm install -g modus-mcp-server

Local Installation

npm install modus-mcp-server

Usage

With Claude Desktop

Add the following configuration to your IDE :

{
  "mcpServers": {
    "modus-components": {
      "command": "npx",
      "args": ["-y", "modus-mcp-server@latest"]
    }
  }
}

Alternative for Windows (if npx doesn't work):

{
  "mcpServers": {
    "modus-components": {
      "command": "node",
      "args": ["-p", "require('modus-mcp-server/dist/index.js')"]
    }
  }
}

Manual Execution

# If installed globally
modus-mcp-server

# If installed locally
npx modus-mcp-server

Available Tools

1. getting_started_guidelines

Get comprehensive installation and setup guidelines for Modus components.

Usage:

Use the getting_started_guidelines tool to get setup instructions.

2. get_list_of_all_modus_components

Retrieve a complete list of all available Modus components.

Usage:

Use get_list_of_all_modus_components to see all available components.

3. get_component_details

Get detailed information about a specific component including properties, events, and usage examples.

Parameters:

  • component_name (required): The name of the Modus component
  • framework (optional): Target framework ('react' or 'angular', defaults to 'react')

Usage:

Use get_component_details with component_name "ModusWcButton" to get button component details.

4. get_modus_icons_by_char

Search for Modus icons by character prefix.

Parameters:

  • char_prefix (optional): Character prefix to filter icons (e.g., "arrow", "check")

Usage:

Use get_modus_icons_by_char with char_prefix "arrow" to find arrow-related icons.

Development

Building from Source

# Clone the repository
git clone https://github.com/your-org/modus-mcp-server
cd modus-mcp-server

# Install dependencies
npm install

# Build the project
npm run build

# Run in development mode
npm run dev

Project Structure

modus-mcp-server/
├── src/
│   ├── index.ts              # Main MCP server
│   └── modules/
│       └── component-registry.ts  # Component data management
├── knowledge-base/           # Modus component documentation
│   ├── modus2_components.json
│   ├── modus2_react_KB.md
│   ├── modus_icons.json
│   └── Modus2_guidelines.md
├── dist/                     # Compiled JavaScript
├── package.json
└── tsconfig.json

Configuration

The server uses stdio transport for seamless integration with MCP clients like Claude Desktop. No additional configuration is required for basic usage.

Troubleshooting

Common Issues

  1. Command not found: Ensure the package is installed globally or use npx
  2. Permission errors: On Unix systems, you may need to run with appropriate permissions
  3. Path issues: The server automatically resolves knowledge base paths relative to the package installation

Debug Mode

The server outputs debug information to stderr, which won't interfere with MCP communication but can help with troubleshooting:

modus-mcp-server 2> debug.log

License

MIT License - see LICENSE file for details.

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Add tests if applicable
  5. Submit a pull request

Support

For issues and questions:

Changelog

v1.0.1

  • Critical Fix: Resolved MCP protocol initialization error
  • Improved schema validation with additionalProperties: false
  • Improved the Readme file.
  • Fixed the Knowledge Base Modus Card error

v1.0.0

  • Initial release
  • stdio transport support
  • Complete Modus 2.0 component library
  • Icon search functionality
  • Installation guidelines