openapi-directory-mcp
Version:
Model Context Protocol server for accessing enhanced triple-source OpenAPI directory (APIs.guru + additional APIs + custom imports)
17 lines • 427 B
JavaScript
export const tool = {
name: "list_cache_keys",
description: "List all cache keys",
inputSchema: {
type: "object",
properties: {},
required: [],
},
async execute(_args, context) {
return {
keys: context.cacheManager.keys(),
total: context.cacheManager.keys().length,
};
},
};
export default tool;
//# sourceMappingURL=list-cache-keys.js.map