We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/activepieces/activepieces'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
fix-dts-require.js•432 B
const Module = require('module');
const originalResolveFilename = Module._resolveFilename;
//we need this script to fix the imports of the d.ts files in the node_modules for the ai piece
Module._resolveFilename = function (request, parent) {
const resolved = originalResolveFilename.apply(this, arguments);
if (resolved.endsWith('.d.ts')) {
return resolved.replace(/\.d\.ts$/, '.js');
}
return resolved;
};