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.
暂无评论. 成为第一个评论的人!
登录以参与讨论
Creates a new document.
Inserts the specified text into the document. Parameters: text (string)
Creates a table with a specified number of rows and columns. Parameters: rows (int), cols (int)
Fills a table with the provided data. Parameters: data (list of lists), has_header (boolean)
Fills a specified column with sequential numbers from start to end. Parameters: start (int), end (int), column (int), from_first_cell (boolean)
Saves the document to the specified path. Parameters: path (string)
Executes multiple operations in a batch. Parameters: operations (list of dictionaries with operation name and params)