Tekla MCP
Automate Tekla Structures modeling: selection, components, properties, views
Runs as a server Claude Code connects to. It needs its own configuration, and some servers need an API key.
Install just this one
Run in your terminal — needs Node
npx archtmpl@latest --mcp tekla-mcpFirst time? The whole install, step by step
- Open Claude Code — the terminal version or the desktop app, either one.
- In a terminal, paste the line above and press Enter. In the app, paste it into the chat and ask Claude to run it.
- Restart Claude Code. That's the whole install.
The same JSON shown on this page works in the Claude desktop app without Claude Code. Add it to the app's config file, then restart the app:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
What this mcp server does
shell
1{ 2 "name": "Tekla MCP", 3 "summary": "Automate Tekla Structures modeling: selection, components, properties, views", 4 "repo": "https://github.com/teknovizier/tekla_mcp_server", 5 "preInstall": [ 6 { "shell": "test -d \"$HOME/.claude-arch/tekla-mcp\" || git clone https://github.com/teknovizier/tekla_mcp_server \"$HOME/.claude-arch/tekla-mcp\"" }, 7 { "shell": "cd \"$HOME/.claude-arch/tekla-mcp\" && uv pip install -r requirements.txt" }, 8 { "shell": "cd \"$HOME/.claude-arch/tekla-mcp\" && cp -n config/settings.sample.json config/settings.json && cp -n config/element_types.sample.json config/element_types.json" } 9 ],10 "mcpServers": {11 "tekla-mcp": {12 "command": "python",13 "args": ["${HOME}/.claude-arch/tekla-mcp/src/tekla_mcp_server/mcp_server.py"],14 "env": {15 "TEKLA_MCP_CONFIG_DIR": "${HOME}/.claude-arch/tekla-mcp/config"16 }17 }18 },19 "postInstallNotes": "Experimental, GPL-3.0. Windows with Tekla Structures installed (tested on 2022 and 2026). Check tekla_path in config/settings.json against your Tekla version; a read_only mode is available for query-only access."20}21