Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
Aspose.Words MCP Server is an MCP (Model Context Protocol) server built on top of Aspose.Words for Python via .NET. It automates Microsoft Word document creation and editing and exposes operations as MCP tools that any MCP‑compatible client can call.
You can check out the Aspose.Words MCP Server GitHub repository.
Supported transports: stdio, streamable-http, sse.
Aspose.Words MCP Server supports the following features:
To install Aspose.Words MCP Server via pip, run the following:
pip install aspose-words-mcp
To install Aspose.Words MCP Server from source, run the following:
git clone https://github.com/aspose-words/Aspose.Words-MCP-Server
cd Aspose.Words-MCP-Server
pip install -r requirements.txt
After installation, use this CLI command:
aspose-words-mcp
Without installation, run the following:
python mcp_server.py
By default, the server runs with the stdio transport.
Supported transports and environment variables:
MCP_TRANSPORT — stdio | streamable-http | sse (default stdio)MCP_HOST — host address (default 0.0.0.0)MCP_PORT — port (default 8080)MCP_PATH — HTTP path for streamable-http (default /mcp)MCP_SSE_PATH — events path for sse (default /sse)LOG_LEVEL — logging level (INFO, DEBUG, …)HTTP/SSE example:
export MCP_TRANSPORT=streamable-http # or sse
export MCP_HOST=0.0.0.0
export MCP_PORT=8080
export MCP_PATH=/mcp # for streamable-http
export MCP_SSE_PATH=/sse # for sse
aspose-words-mcp
On start, the server prints the listening address.
The Aspose.Words license is applied on server startup. The path is resolved with the following precedence:
license_path argument of run_server(..., license_path=None)ASPOSE_WORDS_LICENSE_PATH environment variableThe following code example shows how to apply the license:
export ASPOSE_WORDS_LICENSE_PATH='/path/to/aspose.words.lic'
This package is MIT‑licensed, but it depends on Aspose.Words for Python via .NET, which is a proprietary product. You must obtain a valid Aspose.Words license to use it beyond evaluation limitations. See Aspose.Words for Python via .NET and purchase options.
If no license is provided or the file is not accessible, the server runs in Evaluation mode.
Tool categories exposed by the server include:
For signatures and details, see the server source and tests in the repository (mcp_server.py, tests/features/*).
Aspose.Words MCP Server supports the following integration options:
streamable-http or sse transport and the URL printed by the server at startup.Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.