We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nrwl/nx-console'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
(async () => {
let esbuild = require('esbuild');
let result = await esbuild.build({
entryPoints: ['./apps/nxls/src/main.ts'],
bundle: true,
minify: true,
platform: 'node',
mainFields: ['module', 'main'],
outfile: './dist/apps/nxls/main.js',
metafile: true,
sourcemap: true,
external: ['typescript', 'ts-node', '@swc/*', 'nx', 'webpack'],
loader: { '.node': 'file' },
});
let text = await esbuild.analyzeMetafile(result.metafile, {
verbose: true,
});
// Comment out to analyze the build
// await require('fs/promises').writeFile('./dep.txt', text);
})();