We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/SoMaCoSF/mcp-everything'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/usr/bin/env node
/**
* TUI Launcher for Kiro Integration
*
* This script can be called from Kiro to launch the Terminal User Interface
*/
import { spawn } from 'child_process';
import { join, dirname } from 'path';
import { fileURLToPath } from 'url';
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
console.log('π Launching Kiro Everything MCP Terminal Interface...');
console.log('π Location:', __dirname);
// Launch the TUI in a new process
const tuiProcess = spawn('node', [join(__dirname, 'src', 'tui.js')], {
stdio: 'inherit',
shell: true
});
tuiProcess.on('close', (code) => {
console.log(`\n⨠TUI exited with code ${code}`);
process.exit(code);
});
tuiProcess.on('error', (error) => {
console.error('β Failed to launch TUI:', error.message);
console.log('π‘ Make sure dependencies are installed: npm install');
process.exit(1);
});
// Handle Ctrl+C gracefully
process.on('SIGINT', () => {
console.log('\nπ Shutting down TUI...');
tuiProcess.kill('SIGINT');
});