/** * Manifest MCP Server * * Entry point for the Model Context Protocol server that exposes Manifest * compilation, execution, validation, and introspection as typed MCP tools * and resources. * * Usage: * npx @manifest/mcp-server * node ./bin/manifest-mcp.js * * Tools: * compile — Compile .manifest source to IR * execute — Execute a command against compiled IR * validate — Validate .manifest source (diagnostics only) * explain — Explain an IR entity/command/policy * * Resources: * manifest://ir/schema — IR JSON Schema * manifest://ir/{contentHash} — Cached compiled IR * manifest://semantics — Language semantics reference */ export { registerTools, registerResources } from './server.js'; export declare function startServer(): Promise; //# sourceMappingURL=index.d.ts.map