ABAQUS GUI Scripting
An MCP (Model Context Protocol) server designed to interact with an already running Abaqus/CAE Graphical User Interface (GUI). It allows for the execution of Python scripts within the Abaqus environment and retrieval of messages from the Abaqus messa
What is ABAQUS GUI Scripting?
ABAQUS GUI Scripting is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to mcp (model context protocol) server designed to interact with an already running abaqus/cae graphical user interface (gui). it allows for the execution of python scripts within the abaqus environment ...
An MCP (Model Context Protocol) server designed to interact with an already running Abaqus/CAE Graphical User Interface (GUI). It allows for the execution of Python scripts within the Abaqus environment and retrieval of messages from the Abaqus messa
This server falls under the Developer Tools category on MCPgee, the world's largest MCP server directory with 33,000+ servers.
Features
- An MCP (Model Context Protocol) server designed to interact
Use Cases
Maintainer
Works with
Installation
Manual Installation
npx abaqus-mcp-server-for-gui-scriptingConfiguration
Configuration Details
claude_desktop_config.json
Performance
Response Metrics
Resource Usage
How to Set Up and Use ABAQUS GUI Scripting
The ABAQUS MCP Server bridges AI assistants and a live Abaqus/CAE desktop application, enabling you to execute Python scripts directly inside the running GUI and then read back messages from the Abaqus message log. It works by automating the File → Run Script menu sequence, making it possible to drive finite-element simulations, create parts, assign materials, and submit jobs entirely through natural-language prompts. This is especially useful for engineers who want to automate repetitive CAE workflows without writing standalone Abaqus Python scripts by hand.
Prerequisites
- Windows OS (the server relies on pywinauto and pygetwindow, which are Windows-only)
- Python 3.7 or higher installed and on the PATH
- Abaqus/CAE must be installed, licensed, and actively running with the GUI open before starting the server
- An MCP-compatible client such as Claude Desktop or Claude Code
- pip install -r requirements.txt (mcp[cli], pywinauto, pygetwindow, psutil, pywin32)
Clone the repository
Download the server source code from GitHub so you can install its Python dependencies.
git clone https://github.com/jianzhichun/abaqus-mcp-server.git
cd abaqus-mcp-serverInstall Python dependencies
Install all required packages including the MCP SDK and Windows GUI automation libraries.
pip install -r requirements.txtOpen Abaqus/CAE
Launch Abaqus/CAE and ensure the GUI is fully loaded and responsive with no modal dialogs blocking the interface. The server controls Abaqus through its GUI, so the application must be visible on the desktop.
Start the MCP server
Run the server script. It will connect to the running Abaqus GUI and begin listening for MCP tool calls.
python mcp_server.pyConfigure your MCP client
Add the server to your Claude Desktop configuration file so your AI assistant can invoke its tools.
{
"mcpServers": {
"abaqus": {
"command": "python",
"args": ["C:/path/to/abaqus-mcp-server/mcp_server.py"]
}
}
}ABAQUS GUI Scripting Examples
Client configuration
Add to claude_desktop_config.json (Windows paths). Use the absolute path to mcp_server.py.
{
"mcpServers": {
"abaqus": {
"command": "python",
"args": ["C:/Users/you/abaqus-mcp-server/mcp_server.py"]
}
}
}Prompts to try
After connecting, use these prompts in Claude to drive Abaqus through the MCP tools execute_script_in_abaqus_gui and get_abaqus_gui_message_log.
- "Run a Python script in Abaqus that creates a new model named 'Beam' and adds a part with a 100x10mm rectangular cross-section"
- "Execute a script to assign steel material properties (E=200GPa, nu=0.3) to the existing part in the current model"
- "Retrieve the Abaqus message log and tell me if the last job completed successfully or if there were errors"
- "Write and run a script to submit the job named 'Job-1' and then check the message log for completion status"Troubleshooting ABAQUS GUI Scripting
The server reports it cannot find the Abaqus GUI window
Make sure Abaqus/CAE is fully loaded on the desktop with no splash screen or modal dialogs open. The GUI must be visible and not minimized. Restart Abaqus if needed and try again.
pywinauto or pywin32 import errors on startup
These packages are Windows-only. Confirm you are on Windows and run 'pip install pywinauto pywin32 pygetwindow' explicitly in the same Python environment used to run the server.
Script executes but get_abaqus_gui_message_log returns empty or stale text
Allow a few seconds after execute_script_in_abaqus_gui before calling get_abaqus_gui_message_log, as Abaqus processes scripts asynchronously. Ask the AI to wait briefly and then retrieve the log.
Frequently Asked Questions about ABAQUS GUI Scripting
What is ABAQUS GUI Scripting?
ABAQUS GUI Scripting is a Model Context Protocol (MCP) server that mcp (model context protocol) server designed to interact with an already running abaqus/cae graphical user interface (gui). it allows for the execution of python scripts within the abaqus environment and retrieval of messages from the abaqus messa It connects AI assistants to external tools and data sources through a standardized interface.
How do I install ABAQUS GUI Scripting?
Follow the installation instructions on the ABAQUS GUI Scripting GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.
Which AI clients work with ABAQUS GUI Scripting?
ABAQUS GUI Scripting works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.
Is ABAQUS GUI Scripting free to use?
Yes, ABAQUS GUI Scripting is open source and available under the MIT License license. You can use it freely in both personal and commercial projects.
ABAQUS GUI Scripting Alternatives — Similar Developer Tools Servers
Looking for alternatives to ABAQUS GUI Scripting? Here are other popular developer tools servers you can use with Claude, Cursor, and VS Code.
Ecc
★ 188.2kThe agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.
Javaguide
★ 155.8kJava 面试 & 后端通用面试指南,覆盖计算机基础、数据库、分布式、高并发、系统设计与 AI 应用开发
Gemini CLI
★ 104.5kA secure MCP server that wraps the Google Gemini CLI, allowing clients to query Gemini models using local OAuth sessions without requiring an API key. It provides tools for model interaction and diagnostics with built-in protection against command in
Awesome MCP Servers
★ 87.3k⭐ Curated list of Model Context Protocol (MCP) servers - tools that extend Claude Desktop, Cursor, Windsurf, and other MCP clients with custom capabilities.
MCP Servers
★ 86.0kModel Context Protocol Servers
CC Switch
★ 77.5kA cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Gemini CLI & Hermes Agent. Only official website: ccswitch.io
Browse More Developer Tools MCP Servers
Explore all developer tools servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.
Set Up ABAQUS GUI Scripting in Your Editor
Choose your AI client for step-by-step setup instructions.
Quick Config Preview
Add this to your claude_desktop_config.json or .cursor/mcp.json
Ready to use ABAQUS GUI Scripting?
Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.