UNPKG

@kya-os/mcp-i-vercel

Version:

Vercel deployment utilities for MCP-I - lightweight wrapper providing build output generation

24 lines 777 B
/** * @kya-os/mcp-i-vercel * * Lightweight Vercel deployment utilities for MCP-I. * * This package provides Vercel-specific build output generation while * re-exporting all functionality from the main @kya-os/mcp-i package. * * Since Vercel runs standard Node.js (unlike Cloudflare Workers), this * package is intentionally thin - it just adds build tooling without * requiring a specialized runtime. * * Usage: * ```typescript * // Use this package exactly like @kya-os/mcp-i * import { XmcpConfig } from '@kya-os/mcp-i-vercel'; * * // Plus Vercel-specific utilities * import { buildVercelOutput } from '@kya-os/mcp-i-vercel/build'; * ``` */ export * from '@kya-os/mcp-i'; export { buildVercelOutput } from './build.js'; //# sourceMappingURL=index.d.ts.map