UNPKG

replicate-flux-mcp

Version:
8 lines (7 loc) 285 B
import { ErrorCode, McpError } from "@modelcontextprotocol/sdk/types.js"; export function handleError(error) { if (error instanceof Error) { throw new McpError(ErrorCode.InternalError, error.message); } throw new McpError(ErrorCode.InternalError, String(error)); }