Skip to main content
Glama

Visum Thinker MCP Server

MIT License
test-default-config.js•1.39 kB
/** * šŸ” TEST CONFIGURAZIONE PREDEFINITA * Verifica che project_open sia mostrato come DEFAULT */ import { spawn } from 'child_process'; import { fileURLToPath } from 'url'; import { dirname } from 'path'; const __filename = fileURLToPath(import.meta.url); const __dirname = dirname(__filename); console.log('šŸ”§ TEST CONFIGURAZIONE PREDEFINITA'); console.log('šŸŽÆ Verifica che project_open sia il tool DEFAULT'); console.log(''); const mcpServer = spawn('node', ['build/index.js'], { cwd: __dirname, stdio: ['pipe', 'pipe', 'pipe'] }); mcpServer.stdout.on('data', (data) => { const message = data.toString().trim(); if (message && message.includes('tools')) { console.log('šŸ“„ TOOL LIST RESPONSE:', message); mcpServer.kill(); } }); mcpServer.stderr.on('data', (data) => { const logMessage = data.toString().trim(); if (logMessage.includes('DEFAULT') || logMessage.includes('project_open')) { console.log('āœ… FOUND DEFAULT:', logMessage); } }); mcpServer.on('close', (code) => { console.log('\nšŸ Test configurazione completato'); }); // Richiedi lista tool const listToolsRequest = { jsonrpc: "2.0", id: 1, method: "tools/list", params: {} }; setTimeout(() => { mcpServer.stdin.write(JSON.stringify(listToolsRequest) + '\n'); }, 1000); setTimeout(() => { mcpServer.kill(); }, 5000);

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/multiluca2020/visum-thinker-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server