@chinchillaenterprises/mcp-ai-assistant
Version:
MCP server for AI assistant with ElevenLabs text-to-speech integration
39 lines • 994 B
TypeScript
import { z } from 'zod';
declare const inputSchema: z.ZodObject<{
name: z.ZodString;
apiKey: z.ZodString;
isDefault: z.ZodOptional<z.ZodBoolean>;
}, "strip", z.ZodTypeAny, {
name: string;
apiKey: string;
isDefault?: boolean | undefined;
}, {
name: string;
apiKey: string;
isDefault?: boolean | undefined;
}>;
export declare const addAccountTool: {
name: string;
description: string;
inputSchema: z.ZodObject<{
name: z.ZodString;
apiKey: z.ZodString;
isDefault: z.ZodOptional<z.ZodBoolean>;
}, "strip", z.ZodTypeAny, {
name: string;
apiKey: string;
isDefault?: boolean | undefined;
}, {
name: string;
apiKey: string;
isDefault?: boolean | undefined;
}>;
handler: (args: z.infer<typeof inputSchema>) => Promise<{
content: {
type: string;
text: string;
}[];
}>;
};
export {};
//# sourceMappingURL=add-account.d.ts.map