
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
@rsuite/mcp
Advanced tools
A Model Context Protocol (MCP) server for React Suite components, providing AI tools with access to RSuite component type definitions and documentation.
This MCP server allows AI assistants to access comprehensive information about RSuite components, including:
npm install @rsuite/mcp
Run the server directly:
npx @rsuite/mcp
Or install globally:
npm install -g @rsuite/mcp
rsuite-mcp
{
"mcpServers": {
"rsuite": {
"command": "npx",
"args": ["-y", "@rsuite/mcp@latest"]
}
}
}
Create .vscode/mcp.json in your workspace:
{
"servers": {
"rsuite": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@rsuite/mcp@latest"]
}
}
}
claude mcp add rsuite-mcp -- npx -y @rsuite/mcp@latest
get_component_propsGet detailed props information for a specific RSuite component.
Parameters:
componentId (required): Component ID (e.g., "button", "input", "modal")componentName (optional): Specific component name within the fileExample:
Get props for the Button component
list_componentsList all available RSuite components with optional search filtering.
Parameters:
search (optional): Search query to filter componentsExample:
List all RSuite components
Show me all input-related components
list_hooksList all available RSuite hooks.
Example:
What hooks are available in RSuite?
search_componentsSearch for components by name or keyword.
Parameters:
query (required): Search queryExample:
Find components related to "date"
Search for "picker" components
The server provides access to component type definitions through the following URI scheme:
rsuite://index - Complete index of components and hooksrsuite://component/{componentId} - Type definitions for a specific componentrsuite://hook/{hookId} - Information about a specific hookThe server fetches component information from the RSuite documentation website. By default, it uses:
https://rsuitejs.comYou can customize the server behavior using environment variables:
https://rsuitejs.com)Example with custom configuration:
{
"mcpServers": {
"rsuite": {
"command": "npx",
"args": ["-y", "@rsuite/mcp@latest"],
"env": {
"RSUITE_MCP_BASE_URL": "https://your-custom-rsuite-api.com"
}
}
}
}
Here are some example queries you can use with AI assistants:
npm run build
npm run dev
The server can be tested using the MCP Inspector:
npx @modelcontextprotocol/inspector npx @rsuite/mcp
The server accesses component type information generated by RSuite's documentation build process. This includes:
┌─────────────────┐ ┌──────────────────┐ ┌─────────────────────┐
│ AI Assistant │◄──►│ @rsuite/mcp │◄──►│ RSuite Docs (JSON) │
│ (Windsurf, etc) │ │ MCP Server │ │ rsuitejs.com │
└─────────────────┘ └──────────────────┘ └─────────────────────┘
The server acts as a bridge between AI assistants and RSuite's component documentation, providing structured access to component information through the Model Context Protocol.
MIT
Contributions are welcome! Please feel free to submit a Pull Request.
FAQs
Model Context Protocol server for React Suite components
We found that @rsuite/mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.