Quick Start
Setting up @reformer/mcp takes less than 2 minutes.
Requirementsβ
- Node.js 18 or higher
- One of the supported IDEs
Installationβ
Option 1: Global Installationβ
npm install -g @reformer/mcp
Option 2: Via npx (no installation)β
You can use it directly via npx β no installation required.
IDE Configurationβ
Claude Codeβ
claude mcp add --transport stdio reformer -- npx @reformer/mcp
Verify:
claude mcp list
Cursorβ
Create .cursor/mcp.json in your project root:
{
"mcpServers": {
"reformer": {
"command": "npx",
"args": ["@reformer/mcp"]
}
}
}
Restart Cursor.
Windsurfβ
Add to settings (Ctrl+, β MCP):
{
"mcpServers": {
"reformer": {
"command": "npx",
"args": ["@reformer/mcp"]
}
}
}
Cline (VS Code)β
Add to Cline extension settings:
{
"mcpServers": {
"reformer": {
"command": "npx",
"args": ["@reformer/mcp"]
}
}
}
First Requestβ
After setup, try asking the AI to create a form:
Create a registration form with email, password, and confirm password fields
AI will automatically use @reformer/mcp tools to generate:
- TypeScript type for the form
- Form schema with components
- Validation rules
- React component
Verify It Worksβ
If the MCP server is configured correctly, AI will be able to:
- Answer questions about ReFormer β AI gets up-to-date documentation
- Generate forms β using the
create-formprompt - Check code β using the
check_codetool
Try asking:
How do I add email validation in ReFormer?