Are you the author? Sign in to claim
This is an MCP (Model Context Protocol) server for ArchiMate 3.2 diagram generation. The server creates Mermaid and Draw
A Model Context Protocol (MCP) server that generates ArchiMate 3.2 enterprise architecture diagrams. This server enables AI assistants like Claude to create, validate, and visualize ArchiMate models through natural language interactions.
ArchiMate is an open standard for enterprise architecture modeling that provides a visual language for describing, analyzing, and communicating enterprise architectures. It covers business, application, technology, and implementation domains across multiple architectural layers.
Install the package globally to use as an MCP server:
npm install -g @null-pointer/mcp-archimate
Or install locally in your project:
npm install @null-pointer/mcp-archimate
Start the server directly:
npx -y @null-pointer/mcp-archimate
Or if installed globally:
mcp-archimate
Locate your Claude Desktop config file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonAdd the MCP server configuration:
{
"mcpServers": {
"archimate": {
"command": "npx",
"args": ["-y", "@null-pointer/mcp-archimate"]
}
}
}
Or if installed globally:
{
"mcpServers": {
"archimate": {
"command": "mcp-archimate"
}
}
}
Restart Claude Desktop to load the new MCP server
The MCP server provides four main tools:
generate_archimate_diagramCreates Mermaid diagrams from ArchiMate elements and relationships.
validate_archimate_modelValidates models against ArchiMate 3.2 specification rules.
list_archimate_elementsLists available element types, optionally filtered by layer.
list_archimate_relationshipsLists all available relationship types.
Prompt: "Create an ArchiMate diagram showing a customer ordering process with a customer actor, ordering process, and order management application"
Expected Output: A Mermaid diagram showing:
Prompt: "Design an e-commerce application architecture with a web interface, API service, database, and payment gateway"
Expected Elements:
Prompt: "Show me the technology infrastructure for a cloud-based system with load balancer, web servers, application servers, and database cluster"
Expected Elements:
Here are effective prompts to use with Claude when the MCP server is configured:
"What ArchiMate elements are available in the business layer?"
"Show me all the relationship types I can use"
"What's the difference between a business process and business function?"
"Create a basic ArchiMate diagram showing how users interact with a mobile app"
"Design a simple business process diagram for customer onboarding"
"Show me the technology stack for a typical web application"
"Create an ArchiMate model for a digital banking transformation showing business processes, applications, and technology infrastructure"
"Design an enterprise architecture diagram for a retail company showing customer journey, supporting applications, and underlying technology"
"Model a cloud migration scenario showing current on-premise architecture and target cloud architecture"
"Validate this ArchiMate model and tell me if there are any specification violations"
"Check if a business actor can have a realization relationship with an application service"
"What relationships are valid between a business process and application component?"
Elements for describing stakeholder concerns, goals, and requirements
Elements for strategic planning and capability modeling
Elements for business processes, actors, and services
Elements for application components and services
Elements for technology infrastructure and platforms
Elements for physical facilities and equipment
Elements for transformation planning
ArchiMate defines several relationship categories:
npm run dev
node test-mcp.js
src/
├── core/ # Core ArchiMate element classes
├── generator/ # Diagram generation logic
├── models/ # Type definitions and enums
├── validator/ # ArchiMate specification validation
└── server.ts # MCP server implementation
[Add your license information here]
For issues, questions, or contributions, please visit the project repository or contact the maintainers.
Run Claude Code as an MCP server so any agent can delegate coding tasks to it
Browser automation using accessibility snapshots instead of screenshots
Google's universal MCP server supporting PostgreSQL, MySQL, MongoDB, Redis, and 10+ databases
Official GitHub integration for repos, issues, PRs, and CI/CD workflows