BenAHammond/v0-mcp-server
If you are the rightful owner of v0-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
The MCP Server for v0.dev facilitates the generation and refinement of React components using Claude Code.
v0 MCP Server
Generate React components with AI directly in Claude Desktop using the Model Context Protocol.
Documentation: Visit https://www.v0mcp.com/ for full documentation.
Quick Start
V0_API_KEY="your-key-here" npx v0-mcp-server
Or Install directly into Claude Code
claude mcp add v0-server -e V0_API_KEY="your-key-here" -- npx v0-mcp-server
Or Configure Claude Desktop
# Install globally
npm install -g v0-mcp-server
Add the following to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"v0": {
"command": "npx",
"args": ["v0-mcp-server"],
"env": {
"V0_API_KEY": "your-api-key-here"
}
}
}
}
Usage
Simply ask your LLM to create or modify components:
"Create a modern login form with email validation"
"Add a forgot password link and social login buttons"
The MCP server supports the full array of v0 SDK commands.
License
MIT