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. Parameters: text (string) - the text to insert.
Create a table in the document. Parameters: rows (int) - number of rows, cols (int) - number of columns.
Fill the created table with data. Parameters: data (array of arrays) - the data to fill the table with, has_header (bool) - indicates if the first row is a header.
Fill a column with consecutive numbers. Parameters: start (int) - starting number, end (int) - ending number, column (int) - the column index, from_first_cell (bool) - whether to start filling from the first cell.
Save the current document. Parameters: path (string) - the path where the document will be saved.
Execute multiple operations in one batch. Parameters: operations (array of objects) - list of operations to perform.