OpenSTAAD MCP Server
Enables AI agents to interact with Bentley STAAD.Pro models for tasks like load case definition, data extraction, and property setting.
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 Servershow me the load cases defined in the model"
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: ETABS 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.
Available Tools
5 toolsdiscover_apiDiscover API and skillsARead-onlyIdempotent
Discover available API guidance and skills.
Call this FIRST before using other openstaad-mcp tools.
Then use read_skills with one or more specific skill names to load full guidance.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint and idempotentHint. The description adds useful behavioral context about its role as a discovery tool and the follow-up step with read_skills, but does not detail return structure or pagination. Given the annotations, this is sufficient.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences: one stating purpose and one providing usage flow. It is front-loaded, efficient, and every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (no params, output schema present, annotations covering safety), the description fully covers its role and relationship to sibling tools. It is complete for an agent to invoke correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With zero parameters, the description does not need to explain any. The baseline is 4 per the rubric, and no additional detail is required since the schema is empty and no inputs exist.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a clear purpose: 'Discover available API guidance and skills.' It distinguishes itself from sibling tools by positioning as the entry point, with read_skills for loading specific guidance.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicit usage guidance is provided: 'Call this FIRST before using other openstaad-mcp tools. Then use read_skills with one or more specific skill names to load full guidance.' This clearly instructs when and how to use the tool relative to alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
execute_codeExecute Python codeADestructive
Execute Python code in a sandbox against the OpenSTAAD API (don't forget to call discover_api and read_skills for API guidance).
The sandbox provides pre-connected staad (the OpenSTAAD root object) and input_data (if input_data_path is provided) variables (plus json
and math modules). import statements, dir(), getattr(), ... are BLOCKED.
The last expression value or an explicit result = ... assignment is returned as the result.
If output_data_path is provided, the sandbox will write the result to the specified file.
Paths must be on the user LOCAL filesystem and inside MCP roots or configured allowed_dirs.
On Claude Desktop, users can configure allowed directories in the extension settings and Claude can use the filesystem copy_file_to_claude
tool to move files to Claude's filesystem.
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | Python source code to execute. Use the pre-injected ``staad`` variable to interact with the API. (don't forget to call discover_api and read_skills for API guidance) | |
| instance | No | Alias (from ``list_instances``, e.g. ``staadPro1``) of the STAAD instance to target. If omitted, last opened instance is selected. | |
| overwrite | No | Allow overwriting an existing output file. | |
| input_data_path | No | Path on user LOCAL filesystem to a ``.csv`` or ``.xlsx`` file. Its content is injected as the immutable `input_data` variable inside the sandbox. Use this to feed large datasets (e.g. node loads, section properties) into your code without hardcoding them. | |
| output_data_path | No | Path on user LOCAL filesystem to a ``.csv`` or ``.xlsx`` file where to write the ``result`` value. Use this to avoid flooding the context window with large amount of data. The ``result`` variable must be formatted as one of: - List-of-lists → written as CSV or single-sheet xlsx: result = [["Node ID", "X", "Y", "Z"], [1, 0.0, 0.0, 0.0], ...] - Dict of sheet dicts → written as multi-sheet xlsx: result = { "Nodes": {"columns": ["Node ID", "X", "Y", "Z"], "rows": [[1, 0.0, 0.0, 0.0], ...]}, "Members": {"columns": ["Member ID", "Start", "End"], "rows": [[1, 1, 2], ...]} } |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Goes far beyond the annotations (destructiveHint=true, etc.): describes sandbox restrictions (blocked import, dir, getattr), pre-injected variables (staad, input_data, json, math), return value semantics (last expression or result assignment), file writing behavior, path constraints, and overwrite behavior. This provides comprehensive context for safe usage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is moderately long but each sentence carries operational weight—sandbox rules, return behavior, file I/O, and path security. It is well-structured in paragraphs and front-loaded with the core purpose. It could be slightly more compact, but the density is justified by the tool's complexity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (code execution, sandbox, file I/O, multiple parameters), the description covers all critical aspects: prerequisites, environment setup, return conventions, output data structures, filesystem constraints, and even a Claude Desktop workaround. With a strong schema and these descriptions, an agent is fully equipped to invoke the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description adds meaningful context beyond the schema: explains pre-injected variables for the 'code' parameter, details the result variable format for output_data_path (list-of-lists or dict of sheets), and clarifies the 'overwrite' flag usage. This elevation to 4 reflects the added semantic value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'Execute Python code in a sandbox against the OpenSTAAD API'. This is a specific verb+resource that distinguishes it from sibling tools (discover_api, read_skills, list_instances, get_status), which are for discovery/status, not code execution.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit usage context: instructs to call discover_api and read_skills for API guidance, suggests using output_data_path to avoid flooding context, and notes path restrictions. Does not explicitly contrast with alternative tools (none exist for execution), but effectively guides when and how to use the tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_statusGet STAAD.Pro instance statusARead-only
Check the connection to a STAAD.Pro instance.
Pass instance (alias from list_instances) to target a
specific instance. Omit it when only one instance is running.
Returns connection state, STAAD version, and model path.
| Name | Required | Description | Default |
|---|---|---|---|
| instance | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint=true, and the description adds no contradictory info. It discloses useful context about return values and the instance-selection behavior, going beyond the annotation's safety hint. It stops short of explaining error cases or connection failure behavior, but that is not critical for a status check.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three short sentences cover purpose, parameter usage, and return values. The information is front-loaded and there is no redundant or vague wording.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple (one optional parameter) and the description covers the core actions, parameter handling, and output. The existing annotations plus description are sufficient for an agent to invoke it correctly without further assumptions.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema provides no description for the only parameter, but the description fully explains it: it is an alias from list_instances and can be omitted when only one instance runs. This completely compensates for the sparse schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's action and scope: 'Check the connection to a STAAD.Pro instance.' It also specifies what the tool returns (connection state, STAAD version, model path), which distinguishes it from siblings like list_instances.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit usage instructions for the instance parameter: pass an alias from list_instances, or omit it when only one instance is running. This implies a workflow but does not explicitly contrast the tool with alternatives, leaving a minor gap.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_instancesList running STAAD.Pro instancesARead-only
List all running STAAD.Pro instances.
Returns a list of instances with their alias, process ID, currently
open file path, and STAAD version. Call this before execute_code
when multiple STAAD instances may be running so you can pick the
right one. The alias (e.g. staadPro1) is stable for the
server session even if the model file changes.
If a version is below the minimum supported (25.0.1), a warning
field is included with details about potential data inaccuracies.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, so the safe-read nature is covered. The description adds valuable behavioral context beyond annotations: the alias stability across the server session, the version warning condition for versions below 25.0.1, and the specific fields returned. This goes beyond what annotations provide.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact at three sentences, each earning its place. The first sentence states the core purpose, the second covers output fields and usage, and the third handles an edge case warning. Information is front-loaded and no fluff exists.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no parameters, a simple output schema, and clear annotations, the description covers all necessary behavioral aspects. It explains when to use the tool, what it returns, and the version-notice edge case. The existence of an output schema means the description needn't enumerate return fields in detail, making this sufficiently complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, and the input schema confirms this with an empty properties object. Since there are no parameters to explain, the description's silence on parameters is appropriate. The baseline for 0 params is 4, and the description does not need to add any parameter semantics.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with 'List all running STAAD.Pro instances,' which is a specific verb+resource statement that clearly identifies what the tool does. It also distinguishes itself from siblings like execute_code by specifying that it returns instance details such as alias, process ID, open file path, and version.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives an explicit usage directive: 'Call this before execute_code when multiple STAAD instances may be running so you can pick the right one.' This tells the agent when to use the tool and why, while implicitly excluding other contexts. It also explains that the alias is stable, which is critical for subsequent tool calls.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
read_skillsRead OpenSTAAD skillsARead-onlyIdempotent
Read one or more skills by name.
Use discover_api first to list available skills.
Each skill provides domain-specific guidance (e.g. analysis, geometry, loads).
Pass skill names like ["staad-analysis"] or sub-paths like
["staad-steel-design/assets/DESIGN_CODES"] to read reference files
within a skill.
| Name | Required | Description | Default |
|---|---|---|---|
| skills | Yes | List of skill names or sub-paths to read. Use ``discover_api`` to see available skills. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and idempotentHint, and the description adds useful context about reading sub-paths and reference files within a skill. It does not contradict annotations and provides behavioral details beyond the structured hints.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and well-structured, starting with the core purpose, then providing usage prerequisites, context, and examples. Every sentence adds value without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with one parameter, an output schema, and strong annotations, the description fully covers usage, prerequisites, and examples. No critical information is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already documents the 'skills' parameter with 100% coverage, and the description adds meaning by showing example formats (e.g., ['staad-analysis'] or sub-paths) and explaining that sub-paths access reference files. This goes beyond the schema's basic description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states the verb 'Read' with the resource 'one or more skills by name', and distinguishes itself by explaining that it can also read sub-paths/reference files within skills. This differentiates it from sibling tools like discover_api (listing skills) and execute_code (running code).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly instructs to use discover_api first to list available skills, and provides concrete examples of valid inputs. It does not explicitly mention when not to use this tool or compare with execute_code, but the usage context is clear and actionable.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Each tool has a distinct purpose: discover_api and read_skills are clearly sequential for API guidance, while list_instances and get_status differ in scope (all instances vs. specific connection status). The only slight overlap is between these instance-related tools, but descriptions clarify the difference.
All tool names follow a consistent verb_noun pattern (discover_api, read_skills, list_instances, get_status, execute_code), making the API predictable and easy to navigate.
Five tools is well-scoped for the server's purpose, covering the essential workflow from discovery and guidance to instance management and code execution without unnecessary bloat.
The tool set covers the full workflow from discovering skills to executing code, with instance listing and status checks. Minor gaps like managing STAAD instance lifecycle (open/close) may exist but appear outside the server's intended scope.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
AI Hub for AEC — 50+ 3D formats, clash detection, ACC integration via Autodesk Platform Services.
Protocol-native energy infrastructure orchestration for AI data centers. Provides 46 MCP tools across 8 grid protocols (IEC-61850, DNP3, Modbus, OCPP, OpenADR, IEEE 2030.5, IEC 60870-5-104, ICCP) with 5 core API primitives: connect, dispatch, settle, comply, and intel. Enables AI agents to programmatically interact with substations, grid interfaces, and energy assets for real-time workload-grid coordination.
Build, validate, and deploy multi-agent AI solutions from any AI environment.
Your AI Agent's Infrastructure Layer. Connect Claude, Copilot, Codex, or ChatGPT to 200+ managed open source services. Start databases, pipelines, and applications through natural language.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables AI-driven interaction with Tekla Structures through natural language commands, allowing users to select elements, insert components, and automate modeling workflows.10
- AlicenseAqualityBmaintenanceConnects AI assistants to CSI ETABS for structural engineering tasks, enabling model creation, analysis, design, and seismic checks via the COM API.69MIT
- AlicenseAqualityBmaintenanceEnables AI assistants to interact with Autodesk Civil 3D through natural language, supporting tools for surfaces, alignments, profiles, corridors, pipe networks, COGO points, and AutoCAD geometry.92MIT
- AlicenseAqualityAmaintenanceEnables AI agents to interact with Bentley STAAD.Pro models for tasks like load case definition, data extraction, and property setting through natural language.540MIT
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/DP065U/STAAD-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server