Installation#
Check prerequisites#
Python 3.10 or later
Ansys MAPDL installation (for running simulations)
PyMAPDL (installed automatically as a dependency)
Install from PyPI#
The easiest way to install PyMAPDL-MCP is to use pip:
pip install ansys-mapdl-mcp
Install from source#
To install from the source repository:
git clone https://github.com/ansys/pymapdl-mcp.git
cd pymapdl-mcp
pip install -e .
Install development dependencies#
To contribute to development, install the development dependencies:
pip install -e .[tests]
To build the documentation, install the documentation dependencies:
pip install -e ".[doc]"
Verify installation#
To verify that PyMAPDL-MCP is installed correctly, run the following command to display the command-line help:
ansys-mapdl-mcp --help
Next steps#
To launch your first MAPDL instance, see Quick start.
For detailed usage instructions, see the User guide .