instantly-mcp
Version:
Streamlined MCP server for Instantly v2 API with bulletproof campaign creation, HTML paragraph formatting, and complete pagination
15 lines (14 loc) • 438 B
TypeScript
export interface InstantlyApiError {
status: number;
message: string;
code?: string;
details?: any;
}
export declare class InstantlyError extends Error {
status: number;
code?: string;
details?: any;
constructor(error: InstantlyApiError);
}
export declare function handleInstantlyError(error: any, toolName: string): never;
export declare function parseInstantlyResponse(response: Response): Promise<any>;