HWP MCP Server provides a bridge between AI assistants and Hangul Word Processor (HWP) documents, enabling document manipulation through a standardized interface. The implementation supports both Python (Flask-based) and Node.js versions, utilizing the HWP COM interface via pywin32 or winax respectively to control document operations. This server allows AI assistants to create, edit, and format Korean documents in the proprietary HWP format, making it particularly valuable for workflows involving Korean language document processing that require direct interaction with the Hangul Office suite.
아직 리뷰가 없습니다. 첫 번째 리뷰를 작성해 보세요!
대화에 참여하려면 로그인하세요
Create a new document.
Insert text into the document. Parameter: text (string) - the text to be inserted.
Create a table with specified number of rows and columns. Parameters: rows (int), cols (int).
Fill the created table with data. Parameters: data (list of lists) - the data to fill in the table, has_header (boolean) - indicates if the first row is a header.
Fill a column with consecutive numbers. Parameters: start (int), end (int), column (int), from_first_cell (boolean) - indicates if filling starts from the first cell.
Save the document to the specified path. Parameter: path (string) - the path where the document will be saved.
Execute multiple operations in a single batch. Parameter: operations (list of dicts) - a list of operations, each defined by its operation name and parameters.