UNPKG

@civic/hub-bridge

Version:

Stdio <-> HTTP/SSE MCP bridge with Civic auth handling

18 lines 504 B
/** * tools/index.ts * * Exports all locally handled tools for the hub bridge */ import { logoutTool, handleLogout } from './logout.js'; import { switchProfileTool, handleSwitchProfile } from './switchProfile.js'; // Export all tool definitions export const localTools = [ logoutTool, switchProfileTool ]; // Export all tool handlers export const localToolHandlers = { [logoutTool.name]: handleLogout, [switchProfileTool.name]: handleSwitchProfile }; //# sourceMappingURL=index.js.map