Skip to main content
Glama

Memory Bank MCP Server

by yywdandan
parallelLimit.js980 B
'use strict'; module.exports = parallelLimit; /*! * ignore */ function parallelLimit(fns, limit, callback) { let numInProgress = 0; let numFinished = 0; let error = null; if (limit <= 0) { throw new Error('Limit must be positive'); } if (fns.length === 0) { return callback(null, []); } for (let i = 0; i < fns.length && i < limit; ++i) { _start(); } function _start() { fns[numFinished + numInProgress](_done(numFinished + numInProgress)); ++numInProgress; } const results = []; function _done(index) { return (err, res) => { --numInProgress; ++numFinished; if (error != null) { return; } if (err != null) { error = err; return callback(error); } results[index] = res; if (numFinished === fns.length) { return callback(null, results); } else if (numFinished + numInProgress < fns.length) { _start(); } }; } }

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/yywdandan/memory-bank-mcp-server'

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