X-ray your software architecture from any AI assistant: manage ArchiMate blueprints, score them against SOC 2, ISO 27001, GDPR, HIPAA and PCI-DSS, and pull generated code artifacts — all over MCP.
Overview
Archiet Xray — MCP server
X-ray your software architecture from any MCP-compatible AI assistant — Claude Desktop, Cursor, Windsurf, Continue.dev. Archiet Xray exposes Archiet's architecture-modelling and governance engine as MCP tools, so your assistant can build ArchiMate blueprints, run regulatory compliance checks, and retrieve generated code artifacts without a custom integration.
All data is scoped to the workspace tied to your API key.
Tools
Blueprints
list_blueprints— list all architecture blueprintsget_blueprint— get a blueprint with its sections + elementscreate_blueprint— create a new blueprintupdate_blueprint— update title / description / status
ArchiMate elements
list_elements— list elements in a blueprint (filterable by layer)add_element— add an ArchiMate 3.2 elementremove_element— remove an element
Compliance
run_compliance_check— score a blueprint against SOC 2, ISO 27001, GDPR, HIPAA, or PCI-DSS
Code artifacts
list_code_artifacts— list generated code artifactsget_code_artifact— get an artifact's status + quality report
Setup
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"archiet-xray": {
"command": "python",
"args": ["/path/to/archiet-xray/mcp_server.py"],
"env": {
"ARCHIET_API_URL": "https://app.archiet.com",
"ARCHIET_API_KEY": "ak_your_key_here"
}
}
}
}
Server Config
{
"mcpServers": {
"archiet-xray": {
"command": "python",
"args": [
"/path/to/mcp_server.py",
"/path/to/your/repo"
]
}
}
}