MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / decodeTextFile

Function decodeTextFile

packages/hosts/mcp/src/tool-server.ts:330–336  ·  view source on GitHub ↗
(file: ToolFileValue)

Source from the content-addressed store, hash-verified

328};
329
330const decodeTextFile = (file: ToolFileValue): string => {
331 const text = new TextDecoder("utf-8", { fatal: false }).decode(bytesFromBase64(file.data));
332 if (text.length <= TEXT_FILE_CONTENT_MAX_CHARS) return text;
333 return `${text.slice(0, TEXT_FILE_CONTENT_MAX_CHARS)}\n\n[truncated ${
334 text.length - TEXT_FILE_CONTENT_MAX_CHARS
335 } characters]`;
336};
337
338const toolFileContent = (file: ToolFileValue): ContentBlock[] => {
339 const kind = toolFileKind(file);

Callers 1

toolFileContentFunction · 0.85

Calls 1

bytesFromBase64Function · 0.85

Tested by

no test coverage detected