@civic/nexus-bridge
Version:
Stdio <-> HTTP/SSE MCP bridge with Civic auth handling
15 lines • 350 B
JavaScript
/**
* tools/index.ts
*
* Exports all locally handled tools for the nexus bridge
*/
import { logoutTool, handleLogout } from './logout.js';
// Export all tool definitions
export const localTools = [
logoutTool
];
// Export all tool handlers
export const toolHandlers = {
[logoutTool.name]: handleLogout
};
//# sourceMappingURL=index.js.map