@kya-os/mcp-i 1.5.3-canary.0 → 1.5.3-canary.1
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.
|
@@ -41,6 +41,30 @@ export interface MCPIRuntimeConfig {
|
|
|
41
41
|
logFunction?: (record: string) => void;
|
|
42
42
|
includePayloads?: boolean;
|
|
43
43
|
};
|
|
44
|
+
proofing?: {
|
|
45
|
+
/** Enable proof generation and submission */
|
|
46
|
+
enabled?: boolean;
|
|
47
|
+
/** Proof batch queue configuration */
|
|
48
|
+
batchQueue?: {
|
|
49
|
+
/** Proof submission destinations (AgentShield, KTA, etc.) */
|
|
50
|
+
destinations?: Array<{
|
|
51
|
+
/** Destination type */
|
|
52
|
+
type: "agentshield" | "kta";
|
|
53
|
+
/** API base URL */
|
|
54
|
+
apiUrl: string;
|
|
55
|
+
/** API key for authentication */
|
|
56
|
+
apiKey?: string;
|
|
57
|
+
}>;
|
|
58
|
+
/** Maximum batch size before auto-flush (default: 10) */
|
|
59
|
+
maxBatchSize?: number;
|
|
60
|
+
/** Flush interval in milliseconds (default: 5000) */
|
|
61
|
+
flushIntervalMs?: number;
|
|
62
|
+
/** Maximum retries per batch (default: 3) */
|
|
63
|
+
maxRetries?: number;
|
|
64
|
+
/** Enable debug logging */
|
|
65
|
+
debug?: boolean;
|
|
66
|
+
};
|
|
67
|
+
};
|
|
44
68
|
wellKnown?: WellKnownConfig;
|
|
45
69
|
delegation?: {
|
|
46
70
|
/** Enable delegation checks (default: false for backward compatibility) */
|