Skip to main content
Glama
index.js593 B
const { join, resolve } = require('path'); const { readdir, stat } = require('fs'); const { promisify } = require('util'); const toStats = promisify(stat); const toRead = promisify(readdir); async function totalist(dir, callback, pre='') { dir = resolve('.', dir); await toRead(dir).then(arr => { return Promise.all( arr.map(str => { let abs = join(dir, str); return toStats(abs).then(stats => { return stats.isDirectory() ? totalist(abs, callback, join(pre, str)) : callback(join(pre, str), abs, stats) }); }) ); }); } exports.totalist = totalist;

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/MatheusgVentura/Project-One'

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