We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/prisma/prisma'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
qpe-worker-entry.cjs•335 B
// CommonJS wrapper to load qpe-worker.ts via tsx.
// This is needed because Node.js 20 doesn't recognize .ts/.mts extensions when spawning workers,
// even with --import tsx in execArgv. Using a .cjs entry point with tsx registration
// works reliably across Node.js versions.
'use strict'
require('tsx')
require('./qpe-worker.ts')