@lucern/mcp 0.3.0-alpha.17 → 0.3.0-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -6
- package/dist/cli.js +19753 -31932
- package/dist/cli.js.map +1 -1
- package/dist/gateway.d.ts +1 -36
- package/dist/gateway.js +1221 -9046
- package/dist/gateway.js.map +1 -1
- package/dist/hosted-route.js +5033 -17121
- package/dist/hosted-route.js.map +1 -1
- package/dist/index.d.ts +1 -2
- package/dist/index.js +19713 -31931
- package/dist/index.js.map +1 -1
- package/dist/runtime.d.ts +1 -1
- package/dist/runtime.js +599 -6257
- package/dist/runtime.js.map +1 -1
- package/package.json +9 -11
package/dist/index.d.ts
CHANGED
|
@@ -291,7 +291,6 @@ declare const SCOPE_MCP_TOOLS: Record<string, McpToolContract>;
|
|
|
291
291
|
|
|
292
292
|
type JsonRecord = Record<string, unknown>;
|
|
293
293
|
declare function initializeLucernScriptEnv(): void;
|
|
294
|
-
declare function initializeLucernScriptEnvAsync(): Promise<void>;
|
|
295
294
|
declare function readArg(name: string, fallback?: string): string | undefined;
|
|
296
295
|
declare function createLucernMcpClient(): Promise<Client>;
|
|
297
296
|
declare function resolveMcpSessionTenantId(): Promise<string | undefined>;
|
|
@@ -305,4 +304,4 @@ type ValidationResult = {
|
|
|
305
304
|
};
|
|
306
305
|
declare function validateContextPackSchema(payload: unknown): ValidationResult;
|
|
307
306
|
|
|
308
|
-
export { type AuthenticatedGatewayHandler, BOOTSTRAP_MCP_TOOLS, COORDINATION_MCP_TOOLS, type ContextRankingProfile, EPISTEMIC_CONTRACT_MCP_TOOLS, type JsonRecord, LUCERN_AGENT_MD, LUCERN_MCP_RESOURCE_URIS, LUCERN_MCP_TOOL_NAMES, LUCERN_OBSERVER_PROMPT_NAME, LUCERN_PUBLIC_MCP_TOOL_NAMES, type McpAuthContext, McpObservationStore, type RemoteMcpServerOptions, SCOPE_MCP_TOOLS, type StandaloneMcpServerOptions, type ToolExecutionAuditEvent, type ToolExecutionAuthMode, type ToolExecutionEnvelope, type ToolExecutionTransportKind, type TransportParityDriftKind, buildAuthenticatedHandlerMap, buildLucernObserverPrompt, callMcpTool, classifyTransportParityDrift, closeMcpClient, createLucernMcpClient, createLucernMcpHttpRequestHandler, createLucernMcpServer, createLucernStandaloneMcpServer, createMcpHandlerRegistry, createToolExecutionEnvelope, executeToolWithEnvelope, initializeLucernScriptEnv,
|
|
307
|
+
export { type AuthenticatedGatewayHandler, BOOTSTRAP_MCP_TOOLS, COORDINATION_MCP_TOOLS, type ContextRankingProfile, EPISTEMIC_CONTRACT_MCP_TOOLS, type JsonRecord, LUCERN_AGENT_MD, LUCERN_MCP_RESOURCE_URIS, LUCERN_MCP_TOOL_NAMES, LUCERN_OBSERVER_PROMPT_NAME, LUCERN_PUBLIC_MCP_TOOL_NAMES, type McpAuthContext, McpObservationStore, type RemoteMcpServerOptions, SCOPE_MCP_TOOLS, type StandaloneMcpServerOptions, type ToolExecutionAuditEvent, type ToolExecutionAuthMode, type ToolExecutionEnvelope, type ToolExecutionTransportKind, type TransportParityDriftKind, buildAuthenticatedHandlerMap, buildLucernObserverPrompt, callMcpTool, classifyTransportParityDrift, closeMcpClient, createLucernMcpClient, createLucernMcpHttpRequestHandler, createLucernMcpServer, createLucernStandaloneMcpServer, createMcpHandlerRegistry, createToolExecutionEnvelope, executeToolWithEnvelope, initializeLucernScriptEnv, loadDiscoveryHandlers, parseToolExecutionMetadata, readArg, resolveMcpCredentials, resolveMcpSessionTenantId, startLucernMcpHttpServer, startLucernMcpStdioServer, validateContextPackSchema };
|