Skip to main content
Glama

Memory Bank MCP Server

by yywdandan
idGetter.js742 B
'use strict'; /*! * ignore */ module.exports = function addIdGetter(schema) { // ensure the documents receive an id getter unless disabled const autoIdGetter = !schema.paths['id'] && schema.paths['_id'] && schema.options.id; if (!autoIdGetter) { return schema; } if (schema.aliases && schema.aliases.id) { return schema; } schema.virtual('id').get(idGetter); schema.virtual('id').set(idSetter); return schema; }; /** * Returns this documents _id cast to a string. * @api private */ function idGetter() { if (this._id != null) { return String(this._id); } return null; } /** * * @param {String} v the id to set * @api private */ function idSetter(v) { this._id = v; return v; }

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