이 프로젝트는 한글 MCP(HWPX) 서버로, HWPX 문서를 한글 워드프로세서 없이 직접 열고 자동화할 수 있도록 설계되었습니다. Claude Desktop과 같은 MCP 클라이언트에 연결하여 문서 생성·편집·탐색 기능을 제공합니다.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"hwpx": {
"args": [
"hwpx-mcp-server"
],
"command": "uvx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
hwpx-mcp-server는 모델 컨텍스트 프로토콜(MCP) 표준을 따르는 서버로, python-hwpx 기반에서 HWPX 문서의 열람 · 검색 · 편집 · 추출을 AI 클라이언트에서 직접 수행할 수 있게 합니다.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'hwpx-mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked hwpx-mcp-server against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity
Dynamic problem-solving through sequential thought chains
Persistent memory using a knowledge graph
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
Local-first AI memory with knowledge graphs and hybrid search. 17+ AI tools via MCP. Free.
MCP Security Weekly
Get CVE alerts and security updates for Hwpx Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
AI 에이전트가 HWPX 문서를 바로 읽고, 찾고, 수정하게 만드는 MCP 서버
한글 워드프로세서 없이 · 순수 파이썬 · 크로스 플랫폼
| 계층 | 레포 | 역할 |
|---|---|---|
| 📦 라이브러리 | python-hwpx | 순수 파이썬 HWPX 파싱·편집·생성 코어 |
| 🔌 MCP 서버 | hwpx-mcp-server | MCP 클라이언트(Claude Desktop, VS Code 등)에서 HWPX 조작 |
| 🎯 에이전트 스킬 | hwpx-skill | 에이전트가 HWPX를 바로 쓰게 해주는 공식 온보딩 스킬 |
hwpx-mcp-server는 모델 컨텍스트 프로토콜(MCP) 표준을 따르는 서버로, python-hwpx 기반에서 HWPX 문서의 열람 · 검색 · 편집 · 추출을 AI 클라이언트에서 직접 수행할 수 있게 합니다.
참고 이 서버는 Open XML 기반
.hwpx포맷을 지원합니다. 바이너리.hwp포맷은 직접 편집 대상이 아닙니다.
아래 설정 하나만 넣으면 Claude Desktop에서 hwpx MCP 서버를 바로 잡는다.
{
"mcpServers": {
"hwpx": {
"command": "uvx",
"args": ["hwpx-mcp-server"]
}
}
}
Screenshot placeholder: Claude Desktop 설정 화면에서
hwpx서버가 활성화된 장면을 여기에 넣을 예정.
국내 공공기관·학교·기업에서는 한글 문서 기반 업무가 많지만, 자동화는 오랫동안 운영체제와 프로그램에 크게 의존했습니다.
hwpx-mcp-server는 이 제약을 줄이는 데 초점을 둡니다.
filename을 명시하는 stateless 구조docs/use-cases.mdtests/hwpx_mcp_report_updated.mduv 기준:
uvx hwpx-mcp-server
또는 pip 설치 후 실행:
pip install hwpx-mcp-server
hwpx-mcp-server
요구 사항:
Python >= 3.10python-hwpx >= 2.11.1현재 저장소 기준 검증 버전은 python-hwpx 2.11.1입니다 (2026-06-12 검증).
최소 지원 버전은 python-hwpx >= 2.11.1입니다.
The hwpx-plugins repository builds per-host bundles whose MCP launcher
(plugins/<host>/hwpx-plugin/scripts/hwpx-mcp-server) can run this server. In local development,
set HWPX_MCP_SERVER_REPO=/absolute/path/to/hwpx-mcp-server and
PYTHON_HWPX_REPO=/absolute/path/to/python-hwpx when the repositories are not under a common
parent. The launcher otherwise discovers them by walking up from the bundle directory and uses
uv run --project "$HWPX_MCP_SERVER_REPO" --with-editable "$PYTHON_HWPX_REPO" --with-editable "$HWPX_MCP_SERVER_REPO" hwpx-mcp-server.
claude_desktop_config.json
{
"mcpServers": {
"hwpx": {
"command": "uvx",
"args": ["hwpx-mcp-server"]
}
}
}
</det