#!/usr/bin/env node /** * RevealUI Content MCP Server — stdio launcher. * * Thin wrapper around `createRevealuiContentServer()` (see * `./revealui-content-factory.ts` for the tool surface). This file exists * purely to run the server as a stdio subprocess — the canonical deployment * for local dev, Claude Code integration, and the hypervisor's * `spawn()`-based tool-discovery pipeline. * * For HTTP / serverless / in-process deployment, import the factory * directly and wrap it via `createNodeStreamableHttpHandler` from * `@revealui/mcp/streamable-http`. * * Re-exports `setCredentials` for hypervisor compatibility — existing * tenant-scoped credential resolution continues to work unchanged. */ export { setCredentials } from './factories/revealui-content.js'; //# sourceMappingURL=revealui-content.d.ts.map