{"success":true,"output":{"service":"Document Parse — structured text-document parsing (csv / json / markdown / html)","description":"Parse a text document into structured JSON: CSV into headers + typed rows, JSON into a validated echo with shape stats, Markdown into blocks with a table of contents, and HTML into clean plain text with title and link extraction. Pure local compute — deterministic, no network, no API key. Honest scope: text formats only; this tool does NOT parse PDF or Office binary formats.","pricing":"$0.02 per call via the marketplace (POST /api/execute) or the x402 edge.","usage":"POST with { \"input\": { \"format\": \"csv\", \"content\": \"name,qty\\nwidget,2\" } } — or send content_base64 for binary-safe transport.","parameters":{"format":{"type":"string","required":true,"options":["csv","json","markdown","html"],"description":"Document format (allowlist only)."},"content":{"type":"string","description":"The document text (<= 1 MB). Provide either content or content_base64."},"content_base64":{"type":"string","description":"Base64-encoded UTF-8 document (<= 1 MB decoded). Alternative to content."},"delimiter":{"type":"string","default":",","options":[",",";","\t","|"],"description":"CSV only: field delimiter."},"has_header":{"type":"boolean","default":true,"description":"CSV only: treat the first row as a header row."}},"tip":"Supported formats: csv, json, markdown, html (text extraction). This tool does NOT parse PDF or Office binaries. Inputs are capped at 1 MB; outputs are bounded and flagged with truncated:true when cut."}}