@chinchillaenterprises/mcp-ai-assistant
Version:
MCP server for AI assistant with ElevenLabs text-to-speech integration
59 lines • 1.67 kB
TypeScript
import { z } from "zod";
export declare const AddAccountArgsSchema: z.ZodObject<{
id: z.ZodString;
name: z.ZodString;
apiKey: z.ZodString;
baseUrl: z.ZodOptional<z.ZodString>;
setAsDefault: z.ZodOptional<z.ZodBoolean>;
}, "strip", z.ZodTypeAny, {
name: string;
apiKey: string;
id: string;
baseUrl?: string | undefined;
setAsDefault?: boolean | undefined;
}, {
name: string;
apiKey: string;
id: string;
baseUrl?: string | undefined;
setAsDefault?: boolean | undefined;
}>;
export declare const SwitchAccountArgsSchema: z.ZodObject<{
accountId: z.ZodString;
}, "strip", z.ZodTypeAny, {
accountId: string;
}, {
accountId: string;
}>;
export declare const RemoveAccountArgsSchema: z.ZodObject<{
accountId: z.ZodString;
}, "strip", z.ZodTypeAny, {
accountId: string;
}, {
accountId: string;
}>;
export declare const SetDefaultAccountArgsSchema: z.ZodObject<{
accountId: z.ZodString;
}, "strip", z.ZodTypeAny, {
accountId: string;
}, {
accountId: string;
}>;
export declare const UpdateAccountArgsSchema: z.ZodObject<{
accountId: z.ZodString;
name: z.ZodOptional<z.ZodString>;
apiKey: z.ZodOptional<z.ZodString>;
baseUrl: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
accountId: string;
name?: string | undefined;
apiKey?: string | undefined;
baseUrl?: string | undefined;
}, {
accountId: string;
name?: string | undefined;
apiKey?: string | undefined;
baseUrl?: string | undefined;
}>;
export declare const ListAccountsArgsSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
//# sourceMappingURL=account.d.ts.map