OpenSTAAD MCP Server
OfficialAllows AI agents to interact with Bentley STAAD.Pro models for tasks like load case definition, data extraction, and property setting via the OpenSTAAD API.
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., "@OpenSTAAD MCP ServerSet the steel grade of all beams to A992."
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.
OpenSTAAD MCP Server
A Model Context Protocol (MCP) server for Bentley STAAD.Pro that enables AI agents like Claude Desktop, Gemini, or VSCode Copilot to interact with your STAAD.Pro models and perform various time-consuming tasks like load cases definition, data extraction, repetitive property setting and more.
This MCP server was introduced as part of Bentley's Infrastructure AI Co-Innovation Initiative to help our users and accounts discover opportunities and innovate faster, while connecting Bentley's unique engineering tool capabilities to their emerging agentic workflows.
Key Features
Fast and flexible: Enjoy minimal latency, interact with every STAAD.Pro features covered by the OpenSTAAD API.
AI-friendly: Provides documentation, guidance and feedback via dedicated tools to help your AI agent ramp up quickly on the STAAD.Pro API.
Multi-instance support: Connects to multiple running STAAD.Pro instances simultaneously to parallelize tasks across models.
Privacy-first: All processing happens locally on your machine. No data is sent to the cloud. No telemetry.
Related MCP server: Tekla MCP Server
Prerequisites
OS: Windows 11 or newer
STAAD.Pro 2025 or newer installed and running
Quick Start with Claude Desktop (<2min)
Download the latest
openstaad-mcp.mcpbfile from the GitHub Releases page.Open Claude Desktop.
Click the ☰ menu (top-left) → File → Settings → Extensions.
Click Advanced → Install Extensions.
Select the downloaded
.mcpbfile.Click the ☰ menu (top-left) → File → Exit
Restart Claude Desktop.
Claude Desktop will install the server automatically. Open a new conversation and ask Claude to interact with your STAAD.Pro model.
Tip: Make sure STAAD.Pro is running with a model open before you start chatting.
Other Clients & Configuration
TL;DR:
If not already installed, install uv with the command:
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"Configure your client to start the server in stdio mode with the command:
uvx --from git+https://github.com/BentleySystems/openstaad-mcp openstaad-mcpVS Code with GitHub Copilot
For stdio: Open the Command Palette → MCP: Add Server... → Command (stdio) and enter the following command:
uvx --from git+https://github.com/BentleySystems/openstaad-mcp openstaad-mcpFor http: First, start the server in a terminal:
uvx --from git+https://github.com/BentleySystems/openstaad-mcp openstaad-mcp --transport httpLook for the generated token and URL in the terminal output. It should look like this:
WARNING: No --token provided. Auto-generated token: abc123def456ghi789jkl012mno345pq INFO: Starting MCP server 'OpenSTAAD MCP' with transport 'http' (stateless) on http://127.0.0.1:18120/mcpThen, in VS Code, open the Command Palette → MCP: Add Server... → HTTP URL and enter the URL shown in the terminal (e.g.
http://127.0.0.1:18120/mcp).18120is the default port, but yours may differ if you have multiple instances running or if you changed the default. Add the headerAuthorization: Bearer <token>with the token shown in the MCP server terminal.
GitHub Copilot CLI
Use the /mcp add command inside a Copilot CLI session to add the server. See the Copilot CLI documentation for more details.
For stdio transport, use the command:
uvx --from git+https://github.com/BentleySystems/openstaad-mcp openstaad-mcpFor HTTP transport, first start the server in a terminal:
uvx --from git+https://github.com/BentleySystems/openstaad-mcp openstaad-mcp --transport httpLook for the generated token and URL in the terminal output. It should look like this:
WARNING: No --token provided. Auto-generated token: abc123def456ghi789jkl012mno345pq INFO: Starting MCP server 'OpenSTAAD MCP' with transport 'http' (stateless) on http://127.0.0.1:18120/mcpThen add the server in Copilot CLI using the URL shown in the terminal (e.g.
http://127.0.0.1:18120/mcp).18120is the default port, but yours may differ if you have multiple instances running or if you changed the default. Add the headerAuthorization: Bearer <token>with the token shown in the MCP server terminal.
Claude Desktop (manual configuration)
If you prefer manual setup over the .mcpb bundle, edit the Claude Desktop
config file directly:
Windows (MSIX):
%LOCALAPPDATA%\Packages\Claude_<id>\LocalCache\Roaming\Claude\claude_desktop_config.jsonWindows (classic):
%APPDATA%\Claude\claude_desktop_config.jsonmacOS:
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"openstaad": {
"command": "uvx",
"args": ["--from", "git+https://github.com/BentleySystems/openstaad-mcp", "openstaad-mcp"]
}
}
}Claude Code (CLI)
For stdio transport, use the command:
claude mcp add --transport stdio openstaad -- uvx --from git+https://github.com/BentleySystems/openstaad-mcp openstaad-mcpFor HTTP transport, first start the server in a terminal:
uvx --from git+https://github.com/BentleySystems/openstaad-mcp openstaad-mcp --transport httpLook for the generated token and URL in the terminal output. It should look like this:
WARNING: No --token provided. Auto-generated token: abc123def456ghi789jkl012mno345pq INFO: Starting MCP server 'OpenSTAAD MCP' with transport 'http' (stateless) on http://127.0.0.1:18120/mcpThen add the server in Claude Code with the command:
claude mcp add --transport http openstaad http://127.0.0.1:18120/mcp --header "Authorization: Bearer <your-token>"18120is the default port, but yours may differ if you have multiple instances running or if you changed the default.
Gemini CLI
For stdio transport, use the command:
gemini mcp add openstaad uvx --from git+https://github.com/BentleySystems/openstaad-mcp openstaad-mcpFor HTTP transport, first start the server in a terminal:
uvx --from git+https://github.com/BentleySystems/openstaad-mcp openstaad-mcp --transport httpLook for the generated token and URL in the terminal output. It should look like this:
WARNING: No --token provided. Auto-generated token: abc123def456ghi789jkl012mno345pq INFO: Starting MCP server 'OpenSTAAD MCP' with transport 'http' (stateless) on http://127.0.0.1:18120/mcpThen add the server in Gemini CLI with the command:
gemini mcp add --transport http --header "Authorization: Bearer <your-token>" openstaad http://127.0.0.1:18120/mcp18120is the default port, but yours may differ if you have multiple instances running or if you changed the default.
Transport Modes
The server supports two transport modes:
Mode | When to use |
stdio (default) | The MCP client launches the server process directly. Used by Claude Desktop, Claude Code, VS Code Copilot (stdio config). |
HTTP | The server runs persistently and clients connect over the network. |
CLI Options
Flag | Default | Description |
|
| Transport mode |
|
|
|
| OS default | Path to log file |
|
| [http] TCP port to listen on |
| - | [http] Bearer token for authentication |
Available MCP Tools
Tool | Description |
| Lists available API skills and usage guidance |
| Returns detailed guidance for requested skills |
| Lists active STAAD.Pro instances with model paths and versions |
| Runs validated Python code against the connected STAAD.Pro model |
| Returns connection state, STAAD version, model path, analysis status |
File I/O
The execute_code tool supports optional server-side file I/O for bulk data workflows.
Instead of passing large datasets through the agent's context window, the server reads/writes
CSV and XLSX files directly and injects the data into the sandbox as the input_data variable.
Parameter | Description |
| Path to a |
| Path where the sandbox return value will be written. The return value must be a list-of-lists (CSV) or a |
| Allow overwriting an existing output file (default |
Path containment: File paths must resolve inside a configured allowed boundary before any read/write occurs.
The server supports both client-configured MCP roots and server-configured allowed directories (via --allowed-dirs or user_config.allowed_directories in the manifest).
The server validates paths against these boundaries before any file access.
Limits: Max file size 50 MB, max 100K rows, max 500 columns, max 50 input sheets.
Security Notes
Bearer token authentication. Pass
--token MY_SECRET_TOKENwhen running in HTTP mode and includeAuthorization: Bearer <token>in client requests.DNS rebinding protection. Starlette Middlewares validate
Host,Sec-Fetch-SiteandOriginheaders.Code sandbox. The
execute_codetool validates all Python code via AST analysis before execution. Imports, file access, and dangerous builtins are blocked.
Privacy Policy
Please find the Bentley Systems privacy policy here.
Development Setup
1. Clone the repository
git clone https://github.com/BentleySystems/openstaad-mcp.git
cd openstaad-mcp2. Create a virtual environment
python -m venv .venv
# Windows (PowerShell)
.\.venv\Scripts\Activate.ps1
# Windows (cmd)
.venv\Scripts\activate.bat3. Install in editable mode with dev dependencies
pip install -e ".[dev]"4. Run the server from source
# stdio mode (default)
openstaad-mcp
# HTTP mode
openstaad-mcp --transport http5. Run tests
# All unit tests (no STAAD.Pro needed)
pytest
# Specific test files
pytest tests/test_skills.py tests/test_connection.py -v
# Integration tests (requires a running STAAD.Pro instance on Windows)
pytest -m integration -v6. Lint
ruff check .
ruff format --check .7. Building the MCPB Bundler
To produce the standalone
.exefiles distributed via the installer:
pip install -e ".[build]"
pyinstaller mcpb/openstaad-mcp.spec --noconfirm This creates one file in the dist/ directory:
openstaad-mcp.exe: console executable (stdio & http transport)
To create the
.mcpbinstaller bundle, run:
npm install -g @anthropic-ai/mcpb
New-Item -ItemType Directory -Path mcpb-staging -Force
Copy-Item dist/openstaad-mcp.exe mcpb-staging/
$version = (Select-String -Path pyproject.toml -Pattern '^version\s*=\s*"(.+)"$').Matches[0].Groups[1].Value
$manifest = Get-Content mcpb/manifest.json -Raw | ConvertFrom-Json
$manifest.version = $version
$manifest | ConvertTo-Json -Depth 10 | Set-Content mcpb-staging/manifest.json -Encoding utf8
mcpb pack mcpb-staging/ openstaad-mcp.mcpbThe output MCPB bundle is written to .\openstaad-mcp.mcpb.
Contributing
See CONTRIBUTING.md for guidelines on setting up your development environment, branch naming, running tests, and submitting pull requests.
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
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/BentleySystems/openstaad-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server