/** * MCP resource registrations — profile-driven methodology data and dynamic project status. */ import type { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; import type { MethodologyProfile } from '@ido4/core'; /** * Build the PRINCIPLES object from profile data. * For Hydro, this produces the same structure as the old hardcoded constant. */ declare function buildPrinciples(profile: MethodologyProfile): { principles: { name: string; description: string; enforcement: string; }[]; }; /** * Build the WORKFLOW object from profile data. * For Hydro, this produces the same structure as the old hardcoded constant. */ declare function buildWorkflow(profile: MethodologyProfile): { statuses: string[]; transitions: Record; transitionTypes: string[]; }; export declare function registerResources(server: McpServer, profile: MethodologyProfile): void; export { buildPrinciples as PRINCIPLES_BUILDER, buildWorkflow as WORKFLOW_BUILDER }; //# sourceMappingURL=index.d.ts.map