import { McpServer, type McpRequestContext } from "@modelcontextprotocol/server"; import { type ProtocolEra } from "./tool-names.js"; import type { WorkspaceBindingManager } from "../workspaces/bindings.js"; export declare const USER_OUTPUT_LANGUAGE_POLICY: string; export declare const DECISION_MEMORY_POLICY: string; export declare function mcpAgentInstructions(era: ProtocolEra): string; export declare const MCP_AGENT_INSTRUCTIONS: string; export interface ServerBuildOptions { profile?: { kind: "bound"; } | { kind: "catalog"; bindings: WorkspaceBindingManager; principalId: string; }; } export declare function buildServer(context?: McpRequestContext, options?: ServerBuildOptions): McpServer; //# sourceMappingURL=server.d.ts.map