GonMCPtool

fileRead

Extract and process file content from specified paths, supporting both plain text and JSON formats for efficient data handling and integration.

Instructions

讀取檔案內容,支援純文本和JSON格式

Input Schema

NameRequiredDescriptionDefault
encodingNo
filePathYes
modeNotext

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "encoding": { "type": "string" }, "filePath": { "type": "string" }, "mode": { "default": "text", "enum": [ "text", "json" ], "type": "string" } }, "required": [ "filePath" ], "type": "object" }
ID: 8xcb3w59pl