MCP ArchiMate Server
Provides tools to commit and push model changes to a Git repository, enabling version control of ArchiMate models.
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., "@MCP ArchiMate ServerShow me the API component"
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.
MCP ArchiMate Server
A Model Context Protocol (MCP) server for ArchiMate/CoArchi model interaction. Works with VS Code Copilot, Cursor, and other MCP-compatible clients.
Overview
MCP ArchiMate Server enables AI assistants to read and write ArchiMate models stored in CoArchi XML format. Query elements, create relationships, design diagrams, and sync changes to Git—all through natural language.
Repository: https://github.com/dqxorg/mcp-archimate
Features
Read and search ArchiMate models (CoArchi XML format)
Create elements, relationships, and diagrams
Generate models from architecture documentation
Auto-add visual connections to diagrams
Commit and push changes to Git branches
Full ArchiMate 3.2 schema support
Installation
Quick Install (Node.js - Recommended)
1. Install via npm:
npm install -g archimate-chloe-mcp2. Add to VS Code settings (Ctrl+, → click {} icon):
{
"mcp": {
"servers": {
"archimate": {
"command": "archimate-chloe-mcp",
"env": {
"ARCHIMATE_MODEL_PATH": "/path/to/your/archimate/model"
}
}
}
}
}3. Restart VS Code
Alternative: MCP CLI
mcp add archimate -- archimate-chloe-mcpAlternative: Clone from GitHub
git clone https://github.com/dqxorg/mcp-archimate.git
cd mcp-archimate
npm installThen add to VS Code settings:
{
"mcp": {
"servers": {
"archimate": {
"command": "node",
"args": ["/path/to/mcp-archimate/server.js"],
"env": {
"ARCHIMATE_MODEL_PATH": "/path/to/your/archimate/model"
}
}
}
}
}Configuration
Set the ARCHIMATE_MODEL_PATH environment variable to your CoArchi model directory:
# Linux/Mac
export ARCHIMATE_MODEL_PATH=~/Documents/Archi/models/my-architecture
# Windows
set ARCHIMATE_MODEL_PATH=C:\Users\chloe\Documents\Archi\models\my-architectureRunning the Server
Python
python -m archimate_mcp.serverNode.js
node server.jsVS Code Copilot Setup
After installation, use the archimate-chloe-mcp command:
{
"mcp": {
"servers": {
"archimate": {
"command": "archimate-chloe-mcp",
"env": {
"ARCHIMATE_MODEL_PATH": "/path/to/your/archimate/model"
}
}
}
}
}Set ARCHIMATE_MODEL_PATH to your CoArchi model folder (the one with model/business/, model/application/, etc.).
Restart VS Code after adding the configuration.
Verify Setup
Ask Copilot:
"What's in my application layer?"
"Show me all elements"
If you get a response, the MCP server is connected.
Available Tools
Model Operations
Tool | Description |
| Get model statistics by layer and type |
| List elements in business/application/technology layer |
| Search elements by name |
| Get element details by ID |
| Check model for errors |
Model Modification
Tool | Description |
| Create a new element |
| Create a relationship between elements |
| Create a new diagram/view |
| Add element to existing diagram |
| Add visual connection line |
| Auto-add all connections |
| Generate model from markdown |
| Git commit and push |
Schema Discovery
Tool | Description |
| List all ArchiMate element types |
| List all relationship types |
Usage Examples
User: What's in my application layer?
→ Returns all application components and functions
User: Show me the API component
→ Returns element details with relationships
User: Create a BusinessActor for Product Owner
→ Creates new element in business layer
User: Connect the API to the Database with AccessRelationship
→ Creates relationship between elements
User: Add all connections to the C1 diagram
→ Adds visual connection lines for all relationships
User: Design from C:/docs/architecture.md
→ Generates full model from markdown documentArchiMate Element Types
Business Layer
BusinessActor, BusinessRole, BusinessCollaboration, BusinessProcess, BusinessFunction, BusinessService, BusinessObject
Application Layer
ApplicationComponent, ApplicationFunction, ApplicationService, DataObject
Technology Layer
Node, Device, SystemSoftware, TechnologyService, Artifact
Relationship Types
Type | Use Case |
| Service provided to actor |
| Data/control flow |
| Read/write data |
| Actor assigned to element |
| Implementation of specification |
| Strong whole-part |
| Whole-part |
| Event trigger |
Model Structure
The server expects a CoArchi model structure:
model-repository/
└── your-model/
└── model/
├── business/ # Business layer elements
├── application/ # Application layer elements
├── technology/ # Technology layer elements
├── relations/ # All relationships
└── diagrams/ # Views and diagramsGit Integration
The commit_and_push tool automatically:
Stages all changes
Commits with your message
Creates a new branch (
archi/{user}-{date})Pushes to origin
Troubleshooting
Model not loading?
Verify
ARCHIMATE_MODEL_PATHis set correctlyCheck model has proper folder structure (
model/business/,model/application/, etc.)
Connections not visible in diagram?
Use
add_connections_from_relationshipstoolPress F5 in CoArchi to reload
Element not found?
Use
search_elementsto find the correct IDCheck if element exists in the model
License
MIT
Add to your VS Code settings (settings.json):
{
"mcpServers": {
"archimate": {
"command": "python",
"args": ["-m", "archimate_mcp.server"],
"env": {
"ARCHIMATE_MODEL_PATH": "C:\\path\\to\\your\\archimate\\model"
}
}
}
}Claude Desktop Integration
Add to claude_desktop_config.json:
{
"mcpServers": {
"archimate": {
"command": "python",
"args": ["-m", "archimate_mcp.server"],
"env": {
"ARCHIMATE_MODEL_PATH": "/path/to/your/archimate/model"
}
}
}
}Development
# Create virtual environment
python -m venv .venv
# Activate
source .venv/Scripts/activate # Linux/Mac
.venv\Scripts\activate # Windows
# Install dependencies
pip install fastmcp
# Run tests
python -c "import sys; sys.path.insert(0, '.'); from archimate_mcp.server import get_model; m = get_model(); print(m.get_summary())"License
MIT License
Repository
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
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/dqxorg/mcp-archimate'
If you have feedback or need assistance with the MCP directory API, please join our Discord server