@memory-bank/mcp
Version:
Memory-enabled Co-Pilot (MCP) server for managing project documentation and context
14 lines • 661 B
JavaScript
// Export tools from this directory
export * from './document-tools.js';
export * from './list-tools.js';
// Export additional tools function stubs for backward compatibility, but actual implementation
// is now handled via the MCP SDK
export const search_documents_by_tags = async (params) => {
console.log(`[search_documents_by_tags] Called with params:`, params);
throw new Error('Please use the MCP SDK implementation instead');
};
export const read_context = async (params) => {
console.log(`[read_context] Called with params:`, params);
throw new Error('Please use the MCP SDK implementation instead');
};
//# sourceMappingURL=index.js.map