Skip to main content
Glama

Memory Bank MCP Server

by yywdandan
isPathSelectedInclusive.js566 B
'use strict'; /*! * ignore */ module.exports = function isPathSelectedInclusive(fields, path) { const chunks = path.split('.'); let cur = ''; let j; let keys; let numKeys; for (let i = 0; i < chunks.length; ++i) { cur += cur.length ? '.' : '' + chunks[i]; if (fields[cur]) { keys = Object.keys(fields); numKeys = keys.length; for (j = 0; j < numKeys; ++j) { if (keys[i].indexOf(cur + '.') === 0 && keys[i].indexOf(path) !== 0) { continue; } } return true; } } return false; };

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