tapir-archicad-mcp
Provides tools for interacting with Archicad projects, including discovering and calling commands to manage elements, layers, views, and more via the Tapir and official Archicad JSON APIs.
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., "@tapir-archicad-mcpcheck what Archicad projects I have running"
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.
Archicad Tapir MCP Server
This project provides a Model Context Protocol (MCP) server for Archicad. It acts as a bridge, allowing AI agents and applications (like Claude for Desktop) to interact with running Archicad instances by wrapping both the community-driven Tapir API and the official Archicad JSON API.
The server dynamically generates a comprehensive set of 137 MCP tools from the combined API schemas, enabling fine-grained control over Archicad projects.
Disclaimer: This project is in an early stage of development. It has not been extensively tested and is intended primarily for experimental and educational purposes. Interfaces and functionality may change in future updates. Please use with caution.
Key Features
Intelligent Tool Discovery: The server exposes a simple
discover_toolsfunction that uses a powerful local semantic search engine to find the most relevant Archicad command from a user's natural language query.Massive Toolset, Minimal Footprint: Provides access to a unified toolset of 137 commands (and growing) by intelligently merging the community Tapir API and the official Archicad JSON API, without overwhelming the AI's context window.
100% Local & Private Search: The semantic search index is built and runs entirely on your machine using
sentence-transformersandfaiss-cpu. No data ever leaves your computer, and no API keys are required.Adaptive & Relevant Results: Search uses a sophisticated "Top-Score Relative Threshold" to filter out noise and return only the most relevant tools for a given query.
Multi-Instance Control: Connect to and manage multiple running Archicad instances simultaneously.
Robust & Packaged: Designed as a proper Python package with a
pyproject.toml, enabling simple and reliable installation.
Related MCP server: Fusion360 MCP Server
Installation & Setup
Follow these steps to get the server running and connected to an MCP client like Claude for Desktop.
1. Prerequisites
Python 3.12+ and
uv: Ensure you have a modern version of Python and theuvpackage manager installed. You can installuvwithpip install uv.Archicad & Tapir Add-On: You must have Archicad running (which includes the official JSON API). To access the full set of community-developed tools, the Tapir Archicad Add-On must also be installed.
MCP Client: An application that can host MCP servers, such as Claude for Desktop or Gemini CLI
2. Configure Your AI Client
This is now the only step required. Open your client's config.json file and add the following configuration. This command is universal and works on any operating system without modification.
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"ArchicadTapir": {
"command": "uvx",
"args": [
"--from",
"tapir-archicad-mcp",
"archicad-server"
]
}
}
}How This Works:
The uvx command (part of the uv toolchain) is a powerful utility that automatically handles the entire process for you:
The first time the AI client needs the tool,
uvxwill download the latest version oftapir-archicad-mcpfrom PyPI.It will install it into a temporary, isolated environment.
It will run the server.
Usage
Restart Claude for Desktop to apply the configuration changes.
Ensure at least one instance of Archicad (with Tapir) is running.
The client will now have access to a small set of core tools. Start by asking it to find the running Archicad instances:
"Can you check what Archicad projects I have running?"
The AI will run
discovery_list_active_archicadsand report the active instances and theirportnumbers.Now, state your main goal. For example:
"Okay, using port 12345, get all the Wall elements from the project."
The AI will now perform the two-step
discover/callworkflow:First, it will call
archicad_discover_toolswith a query like"get all wall elements". The server's semantic search will find that the best match is theelements_get_elements_by_typetool.Second, it will call
archicad_call_tool, using thename="elements_get_elements_by_type"it just discovered and constructing the necessaryarguments(including theportandparamswithelementType="Wall").The final result is returned to you.
How It Works
The server operates through a layered architecture:
AI Agent (e.g., Claude): Interacts with the user and decides which tools to call.
MCP Client (e.g., Claude for Desktop): Manages the server process and communication.
MCP Server (This Project): Provides an intelligent abstraction layer over Archicad's automation APIs, exposing a simple
discover/callinterface.multiconn_archicadLibrary: The underlying Python library that handles the low-level communication with Archicad instances.Archicad & Tapir Add-On: Archicad's built-in JSON API and the Tapir Add-on execute the commands.
Contributing
Contributions are welcome! Please feel free to submit an issue or open a pull request.
License
This project is licensed under the MIT License. See the LICENSE file for details.
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 Servers
- Alicense-qualityDmaintenanceEnables MCP clients like Claude to interact with Graphisoft Archicad through the Tapir add-on's JSON commands. Supports automated Archicad operations and custom tool integration for architectural design workflows.Last updated22MIT
- AlicenseBqualityFmaintenanceConnects AI coding agents to Autodesk Fusion 360 for CAD automation, enabling natural language control over sketching, 3D modeling, and CAM operations. It uses a Python-based bridge and a custom add-in to execute over 80 tools ranging from simple geometry creation to complex assembly and parameter management.Last updated8062MIT
- Alicense-qualityAmaintenanceMCP server for Autodesk Revit (BIM) with 705+ API endpoints. Enables AI agents to create walls, place doors/windows, generate sheets, manage views, and produce construction documents via the Model Context Protocol. Uses named pipes for zero-crash Revit integration.Last updated22MIT
- AlicenseAqualityBmaintenanceMCP server for Archicad automation, enabling AI assistants to run Python scripts against running Archicad instances via the Tapir JSON API for complex workflows.Last updated4MIT
Related MCP Connectors
Persistent memory and knowledge management for AI agents with semantic search and 50+ tools.
Convert Revit files to XKT, IFC, or DWG and query BIM data via natural language.
Universal AI API Orchestrator — 1,554 tools, 96 services. One install.
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/SzamosiMate/tapir-archicad-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server