@chinchillaenterprises/mcp-ai-assistant
Version:
MCP server for AI assistant with ElevenLabs text-to-speech integration
15 lines • 460 B
TypeScript
import { z } from 'zod';
declare const inputSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
export declare const listAccountsTool: {
name: string;
description: string;
inputSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
handler: (args: z.infer<typeof inputSchema>) => Promise<{
content: {
type: string;
text: string;
}[];
}>;
};
export {};
//# sourceMappingURL=list-accounts.d.ts.map