UNPKG

v0-mcp-node

Version:

Vercel v0 MCP Server using Node.js and TypeScript - Generate UI components through Claude Code

27 lines 558 B
#!/usr/bin/env node /** * v0-mcp: MCP Server for Vercel v0 API Integration * Provides AI-powered UI generation tools for Claude Code */ /** * Main MCP Server implementation */ declare class V0McpServer { private server; private v0Tools; constructor(); /** * Set up MCP request handlers */ private setupHandlers; /** * Start the MCP server */ start(): Promise<void>; /** * Handle graceful shutdown */ shutdown(): Promise<void>; } export { V0McpServer }; //# sourceMappingURL=main.d.ts.map