abaqus-mcp
An MCP server that enables controlling a live Abaqus/CAE session through natural language, allowing model inspection, job submission, ODB analysis, and viewport capture.
README
Abaqus MCP Server
A clean, GitHub-ready Model Context Protocol (MCP) package for controlling a live Abaqus/CAE session through Kimi, Claude, or Codex.
The package consists of:
mcp_server.py— a stdio MCP server that exposes Abaqus-specific tools.abaqus_mcp_plugin.py— a low-latency TCP socket bridge that runs inside Abaqus/CAE.abaqus_plugins/mcp_control/— an optional Abaqus/CAE GUI plugin loader.setup.ps1— a one-click Windows installer that copies the package, creates a virtual environment, installs dependencies, and registers the MCP server with Kimi and Claude/Codex.install_mcp_config.py— a JSON merge helper that preserves unrelated MCP client settings.
Architecture
MCP client (Kimi / Claude / Codex)
<stdio MCP>
mcp_server.py
<local TCP JSON, default 127.0.0.1:48152>
Abaqus/CAE GUI bridge
<AFX timeout dispatcher + sendCommand>
Abaqus kernel
The bridge executes Python on the Abaqus GUI thread and returns structured results, which avoids file-based polling and keeps interactive commands fast.
Prerequisites
- Windows 10/11.
- Abaqus/CAE 2019 or newer.
- Python 3.10+ (Python 3.14 is known to work; Abaqus ships its own Python, but this MCP server uses a normal system Python).
- The
mcppackage (>=1.0,<2). The installer handles this automatically. - Optional: Intel Fortran compiler if you intend to run user subroutines with Abaqus/Standard or Abaqus/Explicit.
Quick Install
Open a PowerShell terminal in this directory and run:
.\setup.ps1
The installer will:
- Copy the package source to
C:\Users\<username>\.abaqus-mcp. - Create a virtual environment at
C:\Users\<username>\.abaqus-mcp\.venvand install the package in editable mode. - Copy
abaqus_v6.env.exampletoC:\Users\<username>\abaqus_v6.envif one does not already exist. - Copy
abaqus_plugins\mcp_controltoC:\Users\<username>\abaqus_plugins\mcp_control. - Register the MCP server in
C:\Users\<username>\.kimi\mcp.jsonandC:\Users\<username>\.claude\settings.json.
To skip the MCP client registration step, run:
.\setup.ps1 -SkipMcpRegistration
How to Start the Abaqus GUI Bridge
- Start Abaqus/CAE.
- Choose Plug-ins > Abaqus MCP > Start Socket Bridge from the menu bar.
- The message area will confirm the bridge is listening on
127.0.0.1:48152. - In your MCP client, start the
abaqus-mcp-serverserver.
If you want the menu to appear automatically on every Abaqus/CAE startup, make sure C:\Users\<username>\abaqus_v6.env contains the startup hook from abaqus_v6.env.example and that ABAQUS_MCP_HOME points to C:\Users\<username>\.abaqus-mcp.
MCP Tools
| Tool | Description |
|---|---|
ping |
Verify the socket bridge is alive and return live session telemetry. |
check_abaqus_connection |
Human-readable connection status. |
run_python |
Execute Abaqus Python inside the live CAE kernel with structured return values and diagnostics. |
execute_script |
Compatibility wrapper around run_python. |
set_workdir |
Change the Abaqus working directory before creating or submitting jobs. |
get_model_info |
Inspect models, parts, materials, steps, loads, BCs, interactions, jobs, and viewports. |
list_jobs |
List jobs defined in the current CAE session. |
submit_job |
Submit an existing job and wait for it to finish. |
monitor_job_status |
Tail .sta / .msg diagnostics or list job status. |
inspect_odb |
Inspect an ODB file's metadata, steps, frames, and available outputs. |
get_odb_info |
Compatibility wrapper around inspect_odb. |
capture_viewport |
Capture the current viewport image as structured base64 data. |
get_viewport_image |
Compatibility wrapper returning a data URI. |
Example Usage Prompts
After starting the bridge, you can ask the MCP client:
- "Ping the Abaqus bridge and tell me what model is open."
- "Run a short Python snippet to list all parts in the current model."
- "Set the Abaqus working directory to
D:\\abaqus_jobs\\run_001." - "Submit the job named
Job-1and monitor its status." - "Inspect the ODB at
D:\\abaqus_jobs\\run_001\\Job-1.odband report the available field outputs." - "Capture the current viewport and describe what you see."
Boundaries and Limitations
- Abaqus/CAE must be running. The MCP server controls a live CAE session through the socket bridge; it cannot start Abaqus/CAE headlessly for live control.
- Start the bridge manually. Before using the MCP tools, choose Plug-ins > Abaqus MCP > Start Socket Bridge inside Abaqus/CAE.
- Localhost only. The bridge binds to
127.0.0.1:48152by default. It is not designed for remote or multi-user access. - No standalone noGUI workflow. This package does not include text-to-CAE generation or batch noGUI/viewer-only pipelines.
noGUIbatch jobs should be launched through normal Abaqus command-line scripts outside this MCP server. - Large ODBs may be slow. ODB inspection and viewport capture send data over the local TCP bridge; very large files can take time and are bounded by
ABAQUS_MCP_MAX_MESSAGE_BYTES(default 32 MB). - No FEA solver bundled. The package only automates Abaqus/CAE; you must have a licensed Abaqus installation.
Manual Configuration
If you installed without -SkipMcpRegistration, the server is already registered. Otherwise, add it manually:
{
"mcpServers": {
"abaqus-mcp-server": {
"command": "C:\\Users\\<username>\\.abaqus-mcp\\.venv\\Scripts\\python.exe",
"args": ["C:\\Users\\<username>\\.abaqus-mcp\\mcp_server.py"],
"cwd": "C:\\Users\\<username>\\.abaqus-mcp",
"env": {
"ABAQUS_MCP_HOST": "127.0.0.1",
"ABAQUS_MCP_PORT": "48152",
"ABAQUS_MCP_TIMEOUT": "60",
"ABAQUS_MCP_HOME": "C:\\Users\\<username>\\.abaqus-mcp"
}
}
}
}
License
See LICENSE and THIRD_PARTY_NOTICES.md.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.