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
JavaScript
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