문서 전문
get_documentMyFSS MCP의 get_document 도구는 문서 전문을 반환합니다 — 첨부 HWP를 마크다운으로 변환한 본문.
[Purpose]
To read and quote a found document — summary·snippet are never quoting grounds.
[Usage]
"그 자료 본문 보여줘" → ntt_id=12345
"길어서 잘렸는데 이어서" → ntt_id=12345, offset_chars=60000
"앞부분만 짧게" → ntt_id=12345, max_chars=8000
[Response]
{ ntt_id, date, board, source, title, nature, topics, depts, summary, url, attachments:[{file_name, ext, parsed}], body_total_chars, offset_chars, truncated, body }
truncated=true means offset_chars+max_chars < body_total_chars — raise offset_chars to continue.
Unknown id returns { error: "ntt_id {n} 없음" }.
body = "(본문 없음)" when nothing was parsed and no HTML 본문 exists.
[Rules]
body = parsed attachments (parsed=true) joined under "## 첨부: {file_name}" heads; with no attachment body it falls back to the detail-page HTML body (mostly FSC).
attachments with parsed=false are NOT in body — disclose the gap, never hide it.
Continue with offset_chars; raising max_chars grows the whole response.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ntt_id | Yes | search_documents/list_recent가 반환한 ntt_id | |
| max_chars | No | 본문 최대 길이(자) | |
| offset_chars | No | 본문 시작 오프셋 (긴 문서 이어읽기) |