We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/xxczaki/local-history-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/usr/bin/env node
import { build } from 'esbuild';
await build({
entryPoints: ['src/index.ts'],
bundle: true,
outfile: 'dist/index.cjs',
platform: 'node',
target: 'node22',
format: 'cjs',
external: [],
banner: {
js: '#!/usr/bin/env node\n'
},
minify: false,
sourcemap: false,
treeShaking: true,
metafile: false,
packages: 'bundle'
});