@sinch/mcp
Version:
Sinch MCP server
8 lines (7 loc) • 310 B
TypeScript
import { PromptResponse } from '../../../types';
export type MailgunCredentials = {
domain: string;
apiKey: string;
};
export declare const getMailgunCredentials: (domain: string | undefined) => MailgunCredentials | PromptResponse;
export declare const getMailgunApiKey: () => string | PromptResponse;