anki-mcp-http
Version:
Model Context Protocol server for Anki - enables AI assistants to interact with your Anki flashcards
13 lines • 404 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.sanitizeMcpbConfigValue = sanitizeMcpbConfigValue;
function sanitizeMcpbConfigValue(value) {
if (!value || value.trim() === '') {
return undefined;
}
if (value.startsWith('${') && value.endsWith('}')) {
return undefined;
}
return value;
}
//# sourceMappingURL=mcpb-workarounds.js.map