UNPKG

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

53 lines โ€ข 2.01 kB
import { compressAnythingTool } from './compress-anything'; import { quantumStateTool } from './quantum-state'; import { patternDetectorTool } from './pattern-detector'; async function testSISTools() { console.log('๐Ÿงช Testing SIS-MCP Quantum Tools...\n'); // Test Tool 18: Compress console.log('Testing Tool 18: sis_compress'); try { const compressResult = await compressAnythingTool.execute({ input: 'The Sovereign Intelligence System provides continuous monitoring and analysis capabilities for large repositories', target_tokens: 30, format: 'json' }); console.log('โœ… Compression successful:', compressResult); } catch (error) { console.log('โŒ Compression failed:', error); } // Test Tool 14: Quantum State console.log('\nTesting Tool 14: quantum_state'); try { const quantumResult = await quantumStateTool.execute({ depth: 'surface', collapse: false }); console.log('โœ… Quantum state analysis successful'); console.log('States found:', Array.from(quantumResult.superposition?.keys() || []).length); } catch (error) { console.log('โŒ Quantum state failed:', error); } // Test Tool 19: Pattern Detection console.log('\nTesting Tool 19: sis_patterns'); try { const patternResult = await patternDetectorTool.execute({ type: 'structural', threshold: 0.7, depth: 2, save: false }); console.log('โœ… Pattern detection successful'); console.log('Patterns found:', patternResult.total_detected); } catch (error) { console.log('โŒ Pattern detection failed:', error); } console.log('\nโœจ SIS-MCP Quantum Tools testing complete!'); } // Run tests if called directly if (import.meta.url === `file://${process.argv[1]}`) { testSISTools().catch(console.error); } //# sourceMappingURL=test-sis-tools.js.map