Rocky_Mountain_Vending/.pnpm-store/v10/files/eb/ea2ca0166f3fbe82e0a9bc9cb9bd5cf1ee84a6b455e002707309dfb8cdceef6ec7a78793b3f50904adebcec92219497376c68982d2b0a2903fada4a4567388
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

3 lines
278 B
Text

import type { ServerResponse, IncomingMessage } from 'http';
import { type McpServerOptions } from './get-or-create-mcp-server';
export declare function getMcpMiddleware(options: McpServerOptions): (req: IncomingMessage, res: ServerResponse, next: () => void) => Promise<void>;