Aspose.Cells Cloud MCP Server is a FastMCP-based MCP server built on top of Aspose.Cells Cloud SDK for Python. It automates the creation and editing of Microsoft Excel spreadsheets and exposes operations as MCP tools that any MCP-compatible client can call. Supported transports: stdio, streamable-http, sse.
- convert spreadsheet
- Python 3.11+
- Aspose.Cells Cloud SDK for Python. This library is a commercial product.
You'll need to obtain a valid license for Aspose.Cells Cloud. The package will install this dependency, but you're responsible for complying with Aspose's licensing terms.
python -m pip install aspose-cells-cloud-mcp
From source (download repo and install requirements):
git clone https://github.com/aspose-cells-cloud/Aspose.Cells-Cloud-MCP-Server
cd Aspose.Cells-Cloud-MCP-Server
python -m pip install -r requirements.txt
After installation, the CLI command is available:
aspose-cells-cloud-mcpBy default, the server runs with the stdio transport.
Run without installation:
python mcp_server.pySupported MCP transports: stdio, streamable-http, sse.
MCP_TRANSPORT—stdio|streamable-http|sse(defaultstdio)MCP_HOST— host address (default0.0.0.0)MCP_PORT— port (default8080)MCP_PATH— HTTP path forstreamable-http(default/mcp)MCP_SSE_PATH— events path forsse(default/sse)LOG_LEVEL— logging level (INFO,DEBUG, ...)
docker build -t aspose-cells-cloud-mcp-server:26.4.0 .
docker run -itdp 28080:8080 -e MCP_TRANSPORT="streamable-http" -e ASPOSE_CLOUD_CLIENT_ID="yourt-aspose-cloud-client_id" -e ASPOSE_CLOUD_CLIENT_SECRET="your-aspose-cloud-client-secret" --isolation hyperv --name my-aspose-cells-cloud-mcp-instance aspose-cells-cloud-mcp-server:26.4.0
This package is licensed under the MIT LICENSE. However, it depends on Aspose.Cells Cloud SDK for Python is an open-source library.
You must obtain valid client credentials for Aspose.Cells Cloud.
- Claude Desktop MCP: add this server with
streamable-httporssetransport and the URL printed by the server at startup. - Any MCP (JSON) clients — configure the matching transport and path.