Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,9 @@ Other tools delivered as part of the metapackage are:
Currently, the ``pyansys`` metapackage is also delivering PyAnsys-based MCP (Model Context Protocol) packages, which are:

- `PyMAPDL MCP <https://mapdl-mcp.docs.pyansys.com/>`_: MCP server that provides seamless integration between AI assistants and Ansys MAPDL through PyMAPDL.
- `PyLumerical MCP <https://lumerical-mcp.docs.pyansys.com/>`_: MCP server server that lets AI agents drive Ansys Lumerical tools using PyLumerical.
- `PyLumerical MCP <https://lumerical-mcp.docs.pyansys.com/>`_: MCP server that provides seamless integration between AI assistants and Ansys Lumerical through PyLumerical.
- `PyFluent MCP <https://fluent-mcp.docs.pyansys.com/>`_: MCP server that provides seamless integration between AI assistants and Ansys Fluent through PyFluent.
- `PyMechanical MCP <https://mechanical-mcp.docs.pyansys.com/>`_: MCP server that provides seamless integration between AI assistants and Ansys Mechanical through PyMechanical.
Comment thread
RobPasMue marked this conversation as resolved.

Much effort is underway to continue expanding and developing packages in the
`PyAnsys GitHub <https://github.com/ansys/>`__ account. On the ``Issues`` page
Expand Down
28 changes: 28 additions & 0 deletions projects.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -833,3 +833,31 @@ projects:
user_guide: https://lumerical-mcp.docs.pyansys.com/version/stable/user_guide/index.html
examples: https://lumerical-mcp.docs.pyansys.com/version/stable/examples/index.html
api: https://lumerical-mcp.docs.pyansys.com/version/stable/api/index.html

pyfluent-mcp:
name: PyFluent MCP
description: Model Context Protocol (MCP) server that provides seamless integration between AI assistants and Ansys Fluent through PyFluent.
thumbnail: _static/thumbnails/pyfluent.png
repository: https://github.com/ansys/pyfluent-mcp
families: [Fluids, AI]
tags: [Tools]
icon: _static/icons/fluids.svg
documentation:
base: https://fluent-mcp.docs.pyansys.com/version/stable/index.html
user_guide: https://fluent-mcp.docs.pyansys.com/version/stable/user_guide/index.html
examples: https://fluent-mcp.docs.pyansys.com/version/stable/examples/index.html
api: https://fluent-mcp.docs.pyansys.com/version/stable/api/index.html

pymechanical-mcp:
name: PyMechanical MCP
description: Model Context Protocol (MCP) server that provides seamless integration between AI assistants and Ansys Mechanical through PyMechanical.
thumbnail: _static/thumbnails/pymechanical.png
repository: https://github.com/ansys/pymechanical-mcp
families: [Structures, AI]
tags: [Tools]
icon: _static/icons/structures.svg
documentation:
base: https://mechanical-mcp.docs.pyansys.com/version/stable/index.html
user_guide: https://mechanical-mcp.docs.pyansys.com/version/stable/user_guide/index.html
examples: https://mechanical-mcp.docs.pyansys.com/version/stable/examples/index.html
api: https://mechanical-mcp.docs.pyansys.com/version/stable/api/index.html
Comment thread
RobPasMue marked this conversation as resolved.
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@ tools = [
mcp = [
"ansys-mapdl-mcp==0.2.1",
"ansys-lumerical-mcp==0.1.0",
"ansys-fluent-mcp==0.2.0",
"ansys-mechanical-mcp==0.1.1",
Comment thread
RobPasMue marked this conversation as resolved.
]
all = [
# MAPDL - ALL
Expand All @@ -101,6 +103,8 @@ all = [
# MCP
"ansys-mapdl-mcp==0.2.1",
"ansys-lumerical-mcp==0.1.0",
"ansys-fluent-mcp==0.2.0",
"ansys-mechanical-mcp==0.1.1",
Comment thread
RobPasMue marked this conversation as resolved.
]

[project.urls]
Expand Down
2 changes: 2 additions & 0 deletions tools/links.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@
# MCP
"ansys-mapdl-mcp": "https://mapdl-mcp.docs.pyansys.com/version/stable",
"ansys-lumerical-mcp": "https://lumerical-mcp.docs.pyansys.com/version/stable",
"ansys-fluent-mcp": "https://fluent-mcp.docs.pyansys.com/version/stable",
"ansys-mechanical-mcp": "https://mechanical-mcp.docs.pyansys.com/version/stable",
Comment thread
RobPasMue marked this conversation as resolved.
}
"""Dictionary with PyAnsys packages and their multi-version docs site."""

Expand Down
Loading