UNPKG

@iriseller/mcp-server

Version:

Model Context Protocol (MCP) server providing access to IRISeller's AI sales intelligence platform with 7 AI agents, multi-CRM integration, advanced sales workflows, email automation, Rosa demo functionality with action scoring, DNC compliance checking, G

36 lines (35 loc) 1.52 kB
import { APIResponse, AgentExecutionResponse, WorkflowExecutionResponse } from '../types/index.js'; export declare class FallbackService { /** * Fallback for company research when primary endpoints fail */ static fallbackCompanyResearch(companyName: string, industry?: string): Promise<APIResponse>; /** * Fallback for personalization when primary endpoints fail */ static fallbackPersonalization(prospectName: string, companyName: string, messageType: string, tone?: string): Promise<APIResponse>; /** * Fallback for agent execution when primary endpoints fail */ static fallbackAgentExecution(agentName: string, inputData: any): Promise<AgentExecutionResponse>; /** * Fallback for workflow execution when primary endpoints fail */ static fallbackWorkflowExecution(workflowType: string, inputData: any): Promise<WorkflowExecutionResponse>; /** * Fallback for CRM queries when primary endpoints fail */ static fallbackCRMQuery(entityType: string, filters?: any): Promise<APIResponse>; /** * Fallback for sales forecasting when primary endpoints fail */ static fallbackSalesForecast(timePeriod?: string): Promise<APIResponse>; /** * Get fallback agents list when primary service is unavailable */ static fallbackAgentsList(): Promise<APIResponse>; /** * Get fallback workflows list when primary service is unavailable */ static fallbackWorkflowsList(): Promise<APIResponse>; }