ansys-mcp-server
Provides tools for controlling Ansys engineering simulations, including CFD (Fluent), FEA (Mechanical, MAPDL), meshing (Prime), and post-processing (DPF), enabling AI agents to set up, run, and analyze simulations via natural language.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ansys-mcp-serverSimulate water flow in a 2m pipe with inlet velocity 5 m/s"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Ansys MCP Server
π Language: EN | Π Π£Π‘ | δΈζ
Give Claude Code CLI direct control over Ansys engineering simulations.
This MCP (Model Context Protocol) server wraps PyAnsys into 30 tools that Claude Code can call β run CFD in Fluent, crush FEA in Mechanical, drive MAPDL, post-process with DPF, and mesh with Prime. The AI understands the full simulation pipeline across products: load geometry β mesh β set materials β apply BCs β solve β post-process β export. It knows which tool to call next, and it can reason across CFD, FEA, thermal, and FSI workflows.
No more clicking through Workbench. Just describe what you want in plain language.
π― What makes this different: It's not a chatbot wrapper, not a documentation scraper. It gives Claude Code real, programmatic access to the Ansys solver process β the same API that PyAnsys uses internally. On a machine with Ansys installed and licensed, it actually launches and controls the solvers. The solver window stays open β you watch mesh generation, convergence plots, and field data render in real time.
π¬ Quick Demo
User: "Simulate water flow in a 10cm pipe, 2m long, inlet velocity 5 m/s, steel walls, 300K"
Claude Code (via Ansys MCP):
1. ansys_list_workflows("cfd") β understands which workflow to use
2. ansys_open_gui(solver="fluent") β opens Fluent GUI (one persistent window)
3. ansys_load_geometry("pipe.stp") β loads CAD β visible in Fluent window
4. ansys_mesh_generate(element_size=0.5) β mesh builds in real-time on screen
5. ansys_set_material("fluid", "water") β material colors update in GUI
6. ansys_set_material("solid", "steel")
7. ansys_set_boundary_conditions(...) β inlets, outlets highlighted on mesh
8. ansys_set_parameters({"viscous_model": "k-epsilon"})
9. ansys_run_simulation(iterations=500) β convergence plot updates live
10. ansys_get_convergence() β residual history
11. ansys_get_field_data("velocity") β probe points
12. ansys_export_results(...) β CSV/VTK for ParaViewAll from one sentence. No scripting, no TUI commands, no Workbench clicking. The AI knows the sequence.
Related MCP server: ansys-aedt-mcp
π Installation (2 minutes)
Prerequisites
Python 3.10+
Ansys installed and licensed (Fluent, Mechanical, or MAPDL)
Claude Code CLI
Option 1: One-command installer
# Clone
git clone https://github.com/vorobjewsen30-max/ansys-mcp-server.git
cd ansys-mcp-server
# Install + configure Claude Code automatically
./install.sh # Linux / Mac
# install.bat # WindowsThe installer:
Creates a
.venvvirtual environmentInstalls
mcpSDKOptionally installs PyAnsys packages (
./install.sh install-allfor everything)Writes Claude Code config to
~/.claude/settings.json
Non-fatal errors: If PyAnsys packages fail to install (no internet, missing build tools, etc.), the installer continues with a warning. The server works without them β you can install pip install ansys-fluent-core later.
Upgrade without touching Claude config
# Pull latest code + upgrade packages, keep ~/.claude/settings.json intact
./install.sh --upgrade
install.bat --upgrade # WindowsOption 2: Manual
# 1. Create venv
python3 -m venv .venv && source .venv/bin/activate
# 2. Install MCP SDK
pip install mcp
# 3. Install PyAnsys for your product(s)
pip install ansys-fluent-core # CFD
pip install ansys-mapdl-core # Structural / APDL
pip install ansys-dpf-core # Post-processing
pip install ansys-meshing-prime # Meshing
# 4. Configure Claude Code CLI (~/.claude/settings.json){
"mcpServers": {
"ansys": {
"command": "/path/to/ansys-mcp-server/.venv/bin/python",
"args": ["-m", "ansys_mcp_server.server"],
"cwd": "/path/to/ansys-mcp-server/src"
}
}
}# 5. Restart Claude Code CLI β done!Option 3: pip install
pip install git+https://github.com/vorobjewsen30-max/ansys-mcp-server.git
# Then add to Claude Code config:
# "command": "ansys-mcp-server"π§° Tools (30 total)
π Simulation Management (NEW β persistent GUI)
Tool | What it does |
| Launch Ansys Fluent GUI once. All subsequent commands render in this same window. Watch mesh, convergence, and results in real-time. |
| Show current session: PID, solver, uptime, commands sent |
| Close the Ansys window and end the session |
| Attach to an already-running Ansys window (auto-detected via psutil) |
| Send raw TUI/Scheme commands to the active Fluent window |
| Check which PyAnsys packages are installed |
π§ Mesh Operations
Tool | What it does |
| Get mesh statistics (nodes, elements, quality) from the active window |
| Generate mesh from loaded geometry. Step 2 in the pipeline. Mesh renders in real-time. |
| Refine mesh globally, by boundary, or by region |
| Run quality diagnostics (skewness, aspect ratio, orthogonal quality) |
βοΈ Model Configuration
Tool | What it does |
| Set solver settings, models, turbulence schemes |
| Read current simulation parameters |
| Create/modify BCs (velocity-inlet, pressure-outlet, wall, symmetry, etc.) |
| List all BCs in the model |
| Assign materials from library or custom properties |
| Browse Ansys material library |
π Run & Monitor
Tool | What it does |
| Start calculation in the active window. Convergence plot updates iteration by iteration. |
| Get residual history (live) |
| Stop a running calculation |
π Results Processing
Tool | What it does |
| List all available result fields in the active window |
| Extract field data at probe points (velocity, pressure, temperature, stress...) |
| Export to CSV / VTK / HDF5 / NPZ |
| Auto-generate simulation report (MD/HTML/PDF) |
π Cross-Product Workflow (NEW)
Tool | What it does |
| Use this first. Lists full simulation pipelines: CFD, FEA, Thermal, FSI. Tells you exactly which tools to call in which order. |
| Transfer mesh between Ansys products: Prime β Fluent, Fluent β Mechanical, MAPDL β DPF, etc. |
π Help & Documentation
Tool | What it does |
| Search Ansys documentation |
| Catalog of solvers with pipeline awareness β shows what to do before and after each solver |
| Check setup for common errors before running |
| Get complete worked examples (pipe flow, heat exchanger, wing aero, structural) |
π Workflow-aware AI
The LLM doesn't just call random tools β it understands the engineering pipeline.
When you say "Run a CFD analysis on this pipe", the AI knows:
First: load geometry (
ansys_load_geometryβ "FIRST STEP")Then: generate mesh (
ansys_mesh_generateβ "SECOND STEP")Then: materials, BCs, solver settings
Then: solve, monitor convergence
Finally: export results
When you say "Fluid-structure interaction on a valve", the AI knows:
CFD in Fluent β export pressures β FEA in Mechanical β map results back
It calls
ansys_list_workflows("fsi")to get the full pipeline step-by-step
When you say "How do I set up a thermal analysis?", the AI calls ansys_list_workflows("thermal") and shows you the pipeline.
The tool descriptions are written with pipeline context β every tool knows what comes before and after it.
π¦ Supported Ansys Products
Product | PyAnsys Package | What it does |
Fluent |
| CFD β fluids, heat transfer, turbulence, multiphase |
Mechanical |
| FEA β structural, thermal, modal, contact |
MAPDL |
| Classic APDL β full FEA + electromagnetics |
DPF |
| Post-processing β extract/transform result data |
Prime Mesh |
| Meshing β tetra, hexcore, poly, boundary layers |
Install what you need:
pip install ansys-fluent-core # Fluent only
pip install ansys-mapdl-core # MAPDL only
pip install ansys-fluent-core ansys-dpf-core ansys-meshing-prime # Multipleπ License
The MCP server does not handle licensing directly. PyAnsys picks up your Ansys license automatically from the standard environment:
# Already set by Ansys installation usually:
export ANSYSLI_SERVER="1055@your-license-server"
export ANSYSLMD_LICENSE_FILE="1055@your-license-server"
# Or for enterprise PyPIM:
export ANSYS_PLATFORM_INSTANCEMANAGEMENT_CONFIG="/path/to/config"If fluent or mapdl work from your terminal, the MCP server will work too.
ποΈ Architecture
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Claude Code CLI β
β "Simulate pipe flow, then transfer to FEA for stress" β
ββββββββββββββββββββββββ¬βββββββββββββββββββββββββββββββββββββββββ
β stdio (JSON-RPC via MCP protocol)
ββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββββ
β ansys-mcp-server (Python) β
β βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β 30 MCP Tools + Workflow Awareness β β
β β βββββββββββ ββββββββββββ ββββββββββββ ββββββββββββββββ β β
β β β Session β β Mesh β β Solve β β Workflow β β β
β β β Mgmt β β Ops β β & Post β β Pipeline β β β
β β βββββββββββ ββββββββββββ ββββββββββββ ββββββββββββββββ β β
β β β β β
β β execute_tui() / scheme.exec() / journal fallback β β
β ββββββββββββββββββββββββ¬βββββββββββββββββββββββββββββββββββββ β
β β 3-tier delivery β
β ββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββ β
β β LiveAnsysSession (singleton) β β
β β One persistent Fluent window β never duplicated β β
β β PID: 12345 | Commands: 47 | Uptime: 12 min β β
β ββββββββββββββββββββββββ¬βββββββββββββββββββββββββββββββββββββ β
βββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ
β
βββββββββββββ΄ββββββββββββ
β PyAnsys β
β (fluent / mapdl / β
β mechanical / dpf) β
βββββββββββββ¬ββββββββββββ
β
βββββββββββββΌββββββββββββ
β Ansys License Mgr β
β (ANSYSLI_SERVER) β
βββββββββββββ¬ββββββββββββ
β
βββββββββββββΌββββββββββββ
β Ansys Solver Process β
β (fluent / mapdl / β
β mechanical) β
β βββββββββββββββββββ β
β β GUI Window β β
β β β’ Mesh renders β β
β β β’ Convergence β β
β β β’ Field data β β
β βββββββββββββββββββ β
βββββββββββββββββββββββββDelivery tiers (per command):
session.execute_tui()β direct TUI command via gRPC (preferred)session.scheme.exec()β Scheme evaluation (fallback)Journal file + auto-load (last resort)
β FAQ
Q: Does it work without a license? A: The server runs and all tools respond with guidance and API examples. But actual solver launch requires a licensed Ansys installation. On a machine with a valid license, PyAnsys picks it up automatically.
Q: What Ansys versions are supported? A: PyAnsys supports 2024 R1 and newer (versions 241+). This server targets 2025 R1 (251) by default but accepts any version.
Q: Can it run on a remote HPC cluster?
A: Yes β PyAnsys supports connecting to remote Fluent/Mechanical instances. Configure via ANSYS_PLATFORM_INSTANCEMANAGEMENT_CONFIG (PyPIM). For Slurm-based clusters, use ansys-mapdl-core with launch_mapdl(start_instance=False) and point to the cluster's solver binary.
Q: Is this affiliated with Ansys/Synopsys? A: No. This is an independent community project. Ansys and Fluent are trademarks of Ansys Inc. / Synopsys.
Q: Does the AI understand multiphysics workflows?
A: Yes. The server includes ansys_list_workflows which describes the full pipeline for CFD, FEA, thermal, and FSI. The LLM understands which product handles what, and in which order to call tools. For example, FSI = Fluent (fluid) β Mechanical (structure) with mesh transfer in between.
Q: Can Claude Code run a full parametric study? A: Yes. Describe it: "Run 10 cases varying inlet velocity from 1 to 10 m/s, collect pressure drop, make a plot" β Claude Code calls the tools in a loop automatically.
Q: Can it work with my existing .cas/.dat/.mechdb/.inp files?
A: Yes. Use ansys_run_simulation with the input_file parameter pointing to your existing file. For CAD geometry (.stp, .iges, .scdoc), use ansys_load_geometry first.
Q: Does it save result files automatically?
A: Yes. After each simulation, result files are saved to the output directory: Fluent writes .cas.h5 + .dat.h5, Mechanical writes .rst, MAPDL writes .rst/.rth. You can also manually export with ansys_export_results in CSV, VTK, HDF5, or NPZ format.
Q: What result formats can I get?
A: ansys_export_results supports: CSV (Excel/Python analysis), VTK/VTU (ParaView visualization), HDF5 (efficient binary for ML pipelines), NPZ (NumPy-compatible). Plus auto-generated reports in Markdown/HTML/PDF.
Q: Can it handle transient simulations?
A: Yes. Set time-stepping via ansys_set_parameters with {"time": "transient", "time_step_size": 0.01, "num_time_steps": 100}.
Q: What turbulence models are available? A: Through Fluent/MAPDL: k-epsilon (standard, RNG, realizable), k-omega (standard, SST), Spalart-Allmaras, Reynolds Stress, LES, DES. Describe what you need and Claude Code will configure the right one.
Q: Can it do multiphase? A: Yes β VOF, Eulerian, Mixture, DPM. Tell Claude Code: "set up a VOF model for water-air free surface".
Q: Can I use it on Windows while Ansys runs on Linux? A: Yes. The MCP server runs wherever Claude Code runs. If Ansys is on a Linux workstation, install the server there and connect Claude Code to it.
Q: What if the simulation diverges?
A: Claude Code can diagnose and fix it. ansys_get_convergence shows which equations are problematic. Claude Code adjusts under-relaxation, switches to first-order, or refines the mesh.
Q: After rebooting, do I need to restart the MCP server?
A: No. If configured via settings.json (which install.sh does automatically), Claude Code CLI starts the MCP server on launch.
Q: Is there a --upgrade flag?
A: Yes. ./install.sh --upgrade or install.bat --upgrade pulls the latest code and upgrades packages without touching ~/.claude/settings.json.
π€ Contributing
git clone https://github.com/vorobjewsen30-max/ansys-mcp-server.git
cd ansys-mcp-server
# Create a branch, make changes, send a PRπ License
MIT β use it, fork it, ship it.
π€ Built for Claude Code Β· Powered by PyAnsys Β· MCP Protocol
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/vorobjewsen30-max/ansys-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server