Use the Velt MCP server to install collaboration features into React and Next.js projects through your AI coding agent.
Install Velt collaboration features into your React or Next.js project through an AI coding agent. The Velt MCP (Model Context Protocol) server connects to editors like Claude Code, Cursor, and Windsurf, enabling guided installation with plan generation, codebase scanning, and user approval, all through natural conversation.
For the best results, install Velt Agent Skills before using the MCP installer. Skills give your AI agent access to verified Velt implementation patterns.
Add the Velt MCP server to your editor. The commands below use npx to automatically download and run @velt-js/mcp-installer. You can also install it globally with:
npm install -g @velt-js/mcp-installer
Claude Code
Cursor
Windsurf
Claude Desktop
Other
Run this command in your terminal:
claude mcp add velt-installer -- npx -y @velt-js/mcp-installer
Add to .cursor/mcp.json in your project (or global config):
The guided mode generates a full implementation plan with codebase analysis before making any changes.Workflow:
Collect info: the AI asks setup questions one at a time (project path, API key, auth token, features, provider location, corner position)
Discovery consent: the AI asks whether to scan your codebase for integration points (document ID sources, authentication patterns, JWT wiring)
Verification: if scanning is approved, the AI shows findings for you to confirm, edit, or override
Plan generation: a detailed implementation plan is generated based on your project structure and wiring data
Apply: after you approve the plan, the AI applies changes step by step
Validation: full QA validation runs automatically after installation
The installer recommends placing VeltProvider in app/page.tsx, not
app/layout.tsx. Follow this recommendation unless you have a specific reason
to do otherwise.
Each finding includes a confidence level (HIGH, MEDIUM, LOW, NONE). For uncertain findings, the installer asks you to verify rather than guessing.If you decline the codebase scan, the AI asks a manual questionnaire covering document ID source, user authentication, JWT setup, and component insertion location.
If the codebase scan cannot determine your document ID or auth setup with confidence, the AI will ask explicit follow-up questions. You can also choose the manual questionnaire path by declining the scan.
The installer runs QA validation automatically. Check the browser console for Velt-specific errors after starting your dev server. Common issues include missing API keys or incorrect document IDs.