UNPKG

@juspay/neurolink

Version:

Universal AI Development Platform with working MCP integration, multi-provider support, voice (TTS/STT/realtime), and professional CLI. 58+ external MCP servers discoverable, multimodal file processing, RAG pipelines. Build, test, and deploy AI applicatio

36 lines 1.28 kB
/** * Extract a human-readable error string from an MCP isError result object. * * Shared utility — no side effects, no dependencies on other SDK modules — * so it can be imported from the neurolink.ts event loop, the telemetry * instrumentation (which loads earlier), and the MCP discovery layer without * creating circular imports. Any change to truncation or content-type parsing * must happen here and propagate to all three surfaces. */ export function extractMcpErrorText(raw) { let resultObj; try { resultObj = typeof raw === "string" ? JSON.parse(raw) : raw; } catch { return ""; } if (!resultObj || typeof resultObj !== "object") { return ""; } const content = resultObj.content; if (!Array.isArray(content)) { return ""; } // Fail closed on malformed entries (e.g. `content: [null]`) rather than // throwing — the caller expects an empty string for unparseable input. const texts = content .filter((c) => c !== null && typeof c === "object" && c.type === "text" && typeof c.text === "string" && c.text.length > 0) .map((c) => c.text); return texts.join(" ").substring(0, 500); } //# sourceMappingURL=mcpErrorText.js.map