csvlod-ai-mcp-server
Version:
CSVLOD-AI MCP Server v3.0 with Quantum Context Intelligence - Revolutionary Context Intelligence Engine and Multimodal Processor for sovereign AI development
37 lines • 1.77 kB
JavaScript
// MCP v3 SIS Quantum Tools (14-20)
import { quantumStateTool } from './quantum-state.js';
import { intelSynthesisTool } from './intel-synthesis.js';
import { evolutionExecutorTool } from './evolution-executor.js';
import { streamReaderTool } from './stream-reader.js';
import { compressAnythingTool } from './compress-anything.js';
import { patternDetectorTool } from './pattern-detector.js';
import { sovereigntyGuardTool } from './sovereignty-guard.js';
// SIS 4.0 Omniversal Tools (21-25)
import { omniversalConsciousnessTool } from './omniversal-consciousness.js';
import { temporalDebuggerTool } from './temporal-debugger.js';
import { realitySpawnerTool } from './reality-spawner.js';
import { thoughtInterfaceTool } from './thought-interface.js';
// Re-export all tools
export { quantumStateTool, intelSynthesisTool, evolutionExecutorTool, streamReaderTool, compressAnythingTool, patternDetectorTool, sovereigntyGuardTool, omniversalConsciousnessTool, temporalDebuggerTool, realitySpawnerTool, thoughtInterfaceTool };
// Quantum core exports
export * from './quantum-core/superposition.js';
export * from './quantum-core/entanglement.js';
export * from './quantum-core/collapse.js';
// Register all tools with MCP
export const SIS_QUANTUM_TOOLS = [
quantumStateTool, // Tool 14
intelSynthesisTool, // Tool 15
evolutionExecutorTool, // Tool 16
streamReaderTool, // Tool 17
compressAnythingTool, // Tool 18
patternDetectorTool, // Tool 19
sovereigntyGuardTool // Tool 20
];
// SIS 4.0 Omniversal Tools array
export const SIS_OMNIVERSAL_TOOLS = [
omniversalConsciousnessTool, // Tool 21
temporalDebuggerTool, // Tool 22
realitySpawnerTool, // Tool 23
thoughtInterfaceTool // Tool 24
];
//# sourceMappingURL=index.js.map