Skip to main content
Glama

Memory Bank MCP Server

by yywdandan
explain.js1.17 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Explain = exports.ExplainVerbosity = void 0; const error_1 = require("./error"); /** @public */ exports.ExplainVerbosity = Object.freeze({ queryPlanner: 'queryPlanner', queryPlannerExtended: 'queryPlannerExtended', executionStats: 'executionStats', allPlansExecution: 'allPlansExecution' }); /** @internal */ class Explain { constructor(verbosity) { if (typeof verbosity === 'boolean') { this.verbosity = verbosity ? exports.ExplainVerbosity.allPlansExecution : exports.ExplainVerbosity.queryPlanner; } else { this.verbosity = verbosity; } } static fromOptions(options) { if (options?.explain == null) return; const explain = options.explain; if (typeof explain === 'boolean' || typeof explain === 'string') { return new Explain(explain); } throw new error_1.MongoInvalidArgumentError('Field "explain" must be a string or a boolean'); } } exports.Explain = Explain; //# sourceMappingURL=explain.js.map

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