@civic/hub-bridge
Version:
Stdio <-> HTTP/SSE MCP bridge with Civic auth handling
33 lines • 826 B
TypeScript
/**
* switchProfile.ts
*
* Tool for switching between profiles in the current account.
* This tool updates the locally stored profile configuration.
*/
import type { LocalToolHandler } from "../types.js";
/**
* Tool definition for switch profile tool
*/
export declare const switchProfileTool: {
name: string;
description: string;
inputSchema: {
type: string;
properties: {
alias: {
type: string;
description: string;
};
};
required: string[];
};
};
/**
* Get the current profile alias
*/
export declare function getCurrentProfile(): Promise<string | undefined>;
/**
* Handler for the switch profile tool
*/
export declare const handleSwitchProfile: LocalToolHandler;
//# sourceMappingURL=switchProfile.d.ts.map