Skip to main content
Glama
index.js699 B
'use strict' const fs = require('node:fs') const path = require('node:path') const spawn = require('node:child_process').spawn const exe = process.argv[0] const cwd = process.cwd() runScripts(fs.readdirSync(__dirname)) function runScripts (fileNames) { const fileName = fileNames.shift() if (!fileName) return if (!/\.js$/i.test(fileName)) return runScripts(fileNames) if (fileName.toLowerCase() === 'index.js') return runScripts(fileNames) const fullPath = path.join(__dirname, fileName) console.log('> %s %s', exe, path.relative(cwd, fullPath)) const proc = spawn(exe, [fullPath], { stdio: 'inherit' }) proc.on('exit', function () { runScripts(fileNames) }) }

Latest Blog Posts

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/krtw00/search-mcp'

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