Blade MCP is a Model Context Protocol (MCP) server that implements Razorpay's Design Guidelines and allows you to build Web Interfaces using Blade Design System.
| Tool Name | Description |
|---|---|
hi_blade |
Provides a welcome message and overview of Blade MCP capabilities when user greets with "hi blade", "hey blade", etc. |
create_new_blade_project |
Creates a new project using Blade with Vite, React, and TypeScript setup. Should only be called when creating a new project from scratch. |
create_blade_cursor_rules |
Creates the cursor rules for Blade to help with code generation. Should be called before getting component docs and when the rule file doesn't exist. |
get_blade_component_docs |
Fetches the Blade Design System documentation for specific components. Useful when adding or modifying components in your project. |
get_blade_pattern_docs |
Fetches the Blade Design System pattern documentation. Use this to get information about design patterns, best practices, and implementation guidelines. |
get_blade_general_docs |
Fetches general Blade Design System documentation. Use this to get information about setup, installation, theming, tokens, and general guidelines. |
get_figma_to_code |
Converts Figma designs into Blade Design System code. Provide a Figma design URL to generate the corresponding React components using Blade's component library. [NOTE: figma to code tool can only be accessed by Razorpay employees] |
- Node.js 18.x or higher (install using NVM)
Create or update your mcp.json file with:
{
"mcpServers": {
"blade-mcp": {
"command": "npx",
"args": ["-y", "@razorpay/blade-mcp@latest"]
}
}
}Add the following to claude_desktop_config.json:
{
"mcpServers": {
"blade-mcp": {
"command": "npx",
"args": ["-y", "@razorpay/blade-mcp@latest"]
}
}
}Note
- Learn about how to configure MCP servers in Claude Desktop
- If you're using
nvm, you might want to follow these steps instead ofnpx - Learn how to install Claude Desktop
Note
The MCP server would auto-update by default after few days if you have followed the steps above.
If your MCP server is failing to start or if you want to manually force update the MCP server to latest version, you can do so by following these steps:
-
Step 1: Clear the npx cache
Run following command in your terminal
npx clear-npx-cache
-
Step 2: Quit and Restart Cursor or Claude Instance
- Follow Integrations Guide to configure MCP servers in Cursor
- Open Cursor, Click "Open Project" and select an empty folder
- Press CMD + I (or CTRL + I) to open Cursor's chat
- Type "Hi blade" and get started
Can you create a signup form with best UX practices using Blade?
The AI agents will use the MCP server to retrieve components and generate appropriate code.
# Clone the repository
git clone https://github.com/razorpay/blade.git
cd blade
# Install dependencies
yarn
# Navigate to the MCP server package
cd packages/blade-mcp
# Build the package
yarn buildFor local Blade MCP development with Cursor, update your mcp.json with the local path:
{
"blade-mcp": {
"command": "node",
"args": ["<<USER_PATH>>/blade/packages/blade-mcp/dist/server.js"]
}
}Replace the <<USER_PATH>> with your actual local path to the repository.
We welcome contributions! See CONTRIBUTING.md for details.
MIT © Razorpay