Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | /**
* MCP Handlers Index
*
* Centralizes all MCP tool handler exports for easy import into main.js
* This file will import and re-export all MCP handlers as they are added
*/
import { pingServerHandler } from "./pingServer.handler.js";
// Export individual handlers
export { pingServerHandler };
// Export default object with all handlers for convenient import
export default {
pingServerHandler,
};
|