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)
Create a table with specified rows and columns. Parameters: rows (int), cols (int)
Fill the created table with data. Parameters: data (list of lists), has_header (boolean)
Fill a specified column with consecutive numbers. Parameters: start (int), end (int), column (int), from_first_cell (boolean)
Save the document to the specified path. Parameters: path (string)
Execute multiple operations in batch. Parameters: operations (list of dictionaries with 'operation' and optional 'params')