@civic/hub-bridge
Version:
Stdio <-> HTTP/SSE MCP bridge with Civic auth handling
18 lines • 499 B
JavaScript
/**
* 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 toolHandlers = {
[logoutTool.name]: handleLogout,
[switchProfileTool.name]: handleSwitchProfile
};
//# sourceMappingURL=index.js.map