LLM-friendly document template editing (DOCX/PPTX/HWPX) with MCP server and Claude API tool-use support
Project description
document-adapter
LLM이 DOCX / PPTX / HWPX 문서를 직접 편집할 수 있게 해주는 통합 어댑터 + MCP 서버.
세 가지 오피스 포맷을 하나의 파이썬 인터페이스로 추상화하고, Claude Desktop / Claude Code / Anthropic API Tool Use에서 바로 호출할 수 있는 MCP 도구로 노출합니다. 양식 문서의 빈 셀을 자동으로 채우거나, 템플릿의 {{key}}를 치환하거나, 기존 표의 내용을 수정하는 작업을 LLM 에이전트가 수행할 수 있습니다.
- 📦 PyPI: https://pypi.org/project/document-adapter/
- 🔗 Repo: https://github.com/PlateerLab/document-adapter
지원 포맷
| 포맷 | 백엔드 | 템플릿 렌더 | 표 읽기 | 병합 셀 인지 | 중첩 테이블 | 셀 수정 | 행 추가 |
|---|---|---|---|---|---|---|---|
.docx |
docxtpl + python-docx |
Jinja2 ({%tr%} loop 포함) |
✅ | ✅ | ✅ | ✅ | ✅ |
.pptx |
python-pptx + 자체 lxml 확장 |
{{key}} 치환 |
✅ (슬라이드 위치 포함) | ✅ | — (포맷 미지원) | ✅ | ✅ (v0.5+) |
.hwpx |
자체 hwpx_core (lxml + zipfile) |
{{key}} 치환 |
✅ | ✅ | ✅ | ✅ | ✅ |
- HWPX는 한컴오피스 설치가 불필요합니다 (macOS/Linux 서버에서 그대로 동작).
- 구버전
.hwp(바이너리 포맷)는 지원하지 않습니다 —.hwpx로 변환 후 사용하세요. - 병합 셀: 3개 포맷 모두 preview에
null슬롯 +merges메타로 구조 노출. non-anchor 좌표에 쓰기는MergedCellWriteError로 거부. - 셀 크기 메타 (v0.6+):
get_tables는column_widths_cm/row_heights_cm,get_cell은width_cm/height_cm/char_count를 반환합니다. LLM이 좁은 셀(예: 1.7×0.7cm 배지)에 긴 텍스트를 넣어 오버플로 되는 것을 사전에 판단할 수 있습니다.
라이선스 (상용 사용 가능)
- 본 프로젝트: MIT License
- 런타임 의존성(
python-docx,docxtpl,python-pptx,lxml,mcp): 전부 허용형 OSS (MIT/BSD/Apache-2.0/LGPL-2.1). 상용·내부 서비스에 그대로 포함 가능. - v0.3 이하에서 사용했던
python-hwpx(Non-Commercial License) 는 v0.4.0부터 dev 환경(테스트 fixture 생성) 전용으로 이동. HWPX 편집은 자체hwpx_core모듈이 수행합니다.
설치
pip install document-adapter
Claude API 예시 스크립트까지 포함:
pip install "document-adapter[claude]"
개발 환경에서 소스로 설치:
git clone https://github.com/PlateerLab/document-adapter.git
cd document-adapter
pip install -e ".[dev]"
Python 3.10+ 필요.
빠른 시작 — 파이썬 API
from document_adapter import load
doc = load("report_template.docx")
# 1. 구조 파악
schema = doc.get_schema()
print(schema.placeholders) # ['author', 'date', 'title']
print(schema.tables) # [TableSchema(index=0, rows=7, cols=2, ...), ...]
# 2. 템플릿 렌더
doc.render_template({
"title": "Q1 운영 리포트",
"author": "손성준",
"date": "2026-04-15",
})
doc.save("report_filled.docx")
# 3. 기존 양식 파일의 표 셀 수정
doc = load("checklist.docx")
# 빈 셀 값 교체
old = doc.set_cell(table_index=1, row=1, col=1, value="○○전자")
# 라벨이 있는 셀 ("성 명")에 값 추가 → "성 명 홍길동"
doc.append_to_cell(table_index=2, row=0, col=0, value="홍길동")
# 셀 전체 텍스트 + 병합 메타 조회 (preview의 40자 잘림 없이)
cell = doc.get_cell(table_index=1, row=3, col=2)
print(cell.text, cell.is_anchor, cell.span, cell.nested_table_indices)
# DOCX/HWPX는 행 추가 지원
doc.append_row(1, ["새 항목", "값"])
doc.save("checklist_filled.docx")
doc.close()
확장자로 자동 분기되므로 .pptx / .hwpx도 동일한 API를 사용합니다.
병합 셀 인지 동작 (v0.2+)
schema = doc.get_schema()
t = schema.tables[0]
# preview는 logical grid. 병합된 non-anchor 슬롯은 None.
# [['HEADER', None, None], ['A1', 'A2', 'A3']]
print(t.preview)
# merges는 span>1x1인 anchor 목록
# [MergeInfo(anchor=(0,0), span=(1,3))]
print(t.merges)
# non-anchor에 쓰기 시도하면 MergedCellWriteError (ValueError 서브클래스)
try:
doc.set_cell(0, 0, 2, "X")
except ValueError as e:
print(e) # "cell (0,2) is part of a merged region anchored at (0,0)..."
# 의도적으로 앵커로 리디렉트하고 싶다면
doc.set_cell(0, 0, 2, "X", allow_merge_redirect=True) # 경고 + 실제로 (0,0) 수정
MCP 서버로 사용 — Claude Desktop / Claude Code
실행
python -m document_adapter.mcp_server
# 또는 설치 후
document-adapter-mcp
Claude Desktop 설정
~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"document-adapter": {
"command": "/absolute/path/to/venv/bin/python",
"args": ["-m", "document_adapter.mcp_server"]
}
}
}
재시작하면 Claude Desktop에서 아래 4개 도구를 사용할 수 있습니다.
Claude Code 설정
claude mcp add document-adapter \
/absolute/path/to/venv/bin/python -m document_adapter.mcp_server
Anthropic API Tool Use로 사용
document_adapter.tools가 Claude API의 tool schema 형식과 그대로 호환됩니다.
import anthropic
from document_adapter.tools import TOOL_DEFINITIONS, call_tool
client = anthropic.Anthropic()
resp = client.messages.create(
model="claude-opus-4-6",
max_tokens=4096,
tools=[{
"name": t["name"],
"description": t["description"],
"input_schema": t["input_schema"],
} for t in TOOL_DEFINITIONS],
messages=[{
"role": "user",
"content": "report_template.docx의 표 구조를 확인하고 빈 셀을 적절히 채워줘",
}],
)
# tool_use 블록을 받으면 call_tool(name, args)로 실행 후 결과 반환
전체 agent loop 예시는 examples/claude_api_example.py 참고.
노출되는 도구
| 도구 | 설명 |
|---|---|
inspect_document |
문서 구조(placeholders, tables)를 JSON으로 반환. 항상 첫 호출로 사용 |
render_template |
{{key}}를 context dict 값으로 치환해 새 파일 저장 |
get_cell |
셀 전체 텍스트 + 병합/중첩 메타 반환 (preview의 40자 잘림 없이) |
set_cell |
특정 표의 (row, col) 셀 값 교체 (병합 anchor만) |
append_to_cell |
기존 텍스트 뒤에 값 덧붙임 (라벨 유지용, 예: "성 명" → "성 명 홍길동") |
append_row |
표 끝에 새 행 추가 (DOCX/HWPX 지원) |
inspect_document 반환 예시 (v0.2+)
{
"format": "hwpx",
"source": "/path/to/form.hwpx",
"placeholders": [],
"tables": [
{
"index": 0,
"rows": 28,
"cols": 16,
"location": null,
"parent_path": null,
"preview": [
["포상금 지급신청서", null, null, null, null, null, null, null, null, null, null, null, null, null, null, null],
["접수번호", null, null, "", "접수일자", null, null, "", ...]
],
"merges": [
{"anchor": [0, 0], "span": [1, 16]},
{"anchor": [1, 0], "span": [1, 3]}
]
}
]
}
LLM은 이 preview를 보고 "빈 셀이 어디 있는지 / 어떤 값을 넣어야 하는지" 를 판단하여 set_cell / append_to_cell을 호출합니다. null 슬롯은 병합된 영역이며 merges의 anchor 좌표로만 쓸 수 있습니다.
템플릿 작성 규칙
DOCX — Jinja2 전체 문법 사용 가능
{{ report_title }}
작성자: {{ author }}
{% for item in items %}- {{ item.name }}: {{ item.value }}
{% endfor %}
표 행 반복은 {%tr for ... %} / {%tr endfor %}를 각각 별도 행에 두어야 합니다.
같은 행에 두 태그를 넣으면 <w:tr> 전체가 {% for %}로 교체되어 endfor가 손실됩니다.
┌─────────────────────┬─────┬─────┐
│ 항목 │ 목표 │ 실적 │ <- 헤더
├─────────────────────┼─────┼─────┤
│ {%tr for r in rows %} │ <- for 행
├─────────────────────┼─────┼─────┤
│ {{ r.name }} │ {{ r.target }} │ {{ r.actual }} │ <- 반복 본문
├─────────────────────┼─────┼─────┤
│ {%tr endfor %} │ <- endfor 행
└─────────────────────┴─────┴─────┘
PPTX / HWPX — 단순 {{key}} 치환만
loop / if / filter는 지원하지 않습니다. PPTX는 placeholder가 여러 run으로 쪼개질 수 있어, 어댑터가 paragraph 전체 텍스트를 재조립한 뒤 첫 run에 다시 담는 방식으로 처리합니다 (서식 일부 손실 가능).
내장된 버그 회피
| 포맷 | 문제 | 어댑터의 처리 |
|---|---|---|
| HWPX | python-hwpx 2.9.0의 set_cell_text()가 빈 셀에서 lxml/ElementTree 혼용 TypeError 발생 |
paragraphs[0].text = value 직접 할당으로 우회 |
| HWPX | replace_text_in_runs()가 한글 공백이 run으로 쪼개진 경우 매칭 실패 |
위치 기반 API만 사용 |
| HWPX | manifest fallback 경고 로그가 과도하게 출력됨 |
logging.getLogger("hwpx") 레벨을 ERROR로 조정 |
| PPTX | placeholder가 여러 run으로 쪼개져 단순 run.text 치환이 실패 |
paragraph 전체 재조립 |
| DOCX | docxtpl의 {%tr%}를 같은 행에 두면 파싱 에러 |
README에 배치 규칙 명시 |
프로젝트 구조
document_adapter/
├── __init__.py # load() dispatcher
├── base.py # DocumentAdapter ABC, TableSchema, DocumentSchema
├── docx_adapter.py # DocxAdapter
├── pptx_adapter.py # PptxAdapter
├── hwpx_adapter.py # HwpxAdapter (버그 회피 포함)
├── tools.py # Tool 정의 + call_tool dispatcher
└── mcp_server.py # MCP stdio server
examples/
└── claude_api_example.py
라이선스
MIT
Credits
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file document_adapter-0.7.0.tar.gz.
File metadata
- Download URL: document_adapter-0.7.0.tar.gz
- Upload date:
- Size: 45.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
964bcca2ceed96bcfe00491ca2ea5ec7d3f633ca14a85d7a6550e95ca505e89a
|
|
| MD5 |
b2ab2b4cc4046a7a2031fe67421f7966
|
|
| BLAKE2b-256 |
c7ef5546cc5f04a6c15f307f81c3c7ddcb1e5cd3daedebdf3d7506b64b0cf1ff
|
File details
Details for the file document_adapter-0.7.0-py3-none-any.whl.
File metadata
- Download URL: document_adapter-0.7.0-py3-none-any.whl
- Upload date:
- Size: 41.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae5b53406d8ba58c1957e5693e118470504d89edff178a11d00cff52a54dd98b
|
|
| MD5 |
4e03e5bade63343120da91b83dbd5d23
|
|
| BLAKE2b-256 |
5cdb39ecd461bd2b984e7f992145bcf3877d82d0ac09790f9dc1298ab883d285
|