#!/usr/bin/env node /** * Evolution API MCP Server * Entry point for the MCP server that provides Evolution API v2 integration */ import { runCli } from './cli/cli'; /** * Legacy main function for backward compatibility * @deprecated Use runCli() instead */ declare function main(): Promise; export { main, runCli }; export { EvolutionHttpClient, type ApiResponse, type ApiError, type RequestOptions, type HttpClientConfig, ErrorType } from './clients';