Simple Document Processing MCP Server

document_reader

Read content from non-image document-files at specified paths, supporting various file formats: .pdf, .docx, .txt, .html, .csv

Input Schema

NameRequiredDescriptionDefault
filePathYesPath to the file to be read

Input Schema (JSON Schema)

{ "properties": { "filePath": { "description": "Path to the file to be read", "type": "string" } }, "required": [ "filePath" ], "type": "object" }