An MCP server that seamlessly creates infrastructure diagrams for any cloud provider using the Python diagrams package DSL
Project description
Infrastructure Diagram MCP Server
Model Context Protocol (MCP) server for Multi-Cloud Infrastructure Diagrams
This MCP server seamlessly creates diagrams using the Python diagrams package DSL. Generate professional infrastructure diagrams for any cloud provider (AWS, GCP, Azure), Kubernetes, on-premises, hybrid, and multi-cloud architectures using natural language with Claude Desktop or other MCP clients.
Note: This is a derivative work based on awslabs/aws-diagram-mcp-server, extended with multi-cloud provider support and enhanced features.
Prerequisites
Installation
The package is available on PyPI and can be installed using uvx or pip:
# Using uvx (recommended - no installation needed)
uvx infrastructure-diagram-mcp-server
# Or install with pip
pip install infrastructure-diagram-mcp-server
MCP Client Configuration
Configure the MCP server in your MCP client:
Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"infrastructure-diagrams": {
"command": "uvx",
"args": ["infrastructure-diagram-mcp-server"],
"env": {
"FASTMCP_LOG_LEVEL": "ERROR"
}
}
}
}
Other MCP Clients (e.g., Kiro - ~/.kiro/settings/mcp.json):
{
"mcpServers": {
"infrastructure-diagrams": {
"command": "uvx",
"args": ["infrastructure-diagram-mcp-server"],
"env": {
"FASTMCP_LOG_LEVEL": "ERROR"
},
"autoApprove": [],
"disabled": false
}
}
}
Windows Installation
For Windows users:
{
"mcpServers": {
"infrastructure-diagrams": {
"command": "uvx",
"args": ["infrastructure-diagram-mcp-server"],
"env": {
"FASTMCP_LOG_LEVEL": "ERROR"
}
}
}
}
Docker Installation
Build and run with Docker:
docker build -t infrastructure-diagram-mcp-server .
Then configure your MCP client:
{
"mcpServers": {
"infrastructure-diagrams": {
"command": "docker",
"args": [
"run",
"--rm",
"--interactive",
"--env",
"FASTMCP_LOG_LEVEL=ERROR",
"infrastructure-diagram-mcp-server:latest"
]
}
}
}
Features
The Infrastructure Diagram MCP Server provides the following capabilities:
- Multi-Provider Support: Create diagrams for AWS, GCP, Azure, Kubernetes, on-premises, and hybrid/multi-cloud architectures
- 2000+ Icons: Access to icons across all major cloud providers and services
- Multiple Diagram Types: Infrastructure architecture, sequence diagrams, flow charts, class diagrams, and more
- Rich Examples: 27+ pre-built templates for AWS, GCP, Azure, K8s, hybrid, and multi-cloud patterns
- Customization: Customize diagram appearance, layout, styling, colors, and connections
- Security: Built-in code scanning to ensure secure diagram generation
- Seamless Display: Diagrams appear inline in Claude Desktop with automatic rendering
- Flexible Output: Save diagrams to PNG format in your workspace directory
- Editable Export: Automatically generates .drawio files for editing in diagrams.net/draw.io
How to Use
Once configured in your MCP client (e.g., Claude Desktop), you can generate diagrams using natural language:
Example Prompts:
Discover Available Icons:
List all available GCP infrastructure diagram icons
Get Example Code:
Show me examples of Azure microservices diagrams
Generate Diagrams:
Create a GCP data pipeline diagram showing Pub/Sub, Dataflow, and BigQuery
Generate an AWS serverless architecture with API Gateway, Lambda, and DynamoDB
Design a multi-cloud architecture spanning AWS, GCP, and Azure
The server will automatically:
- Find the appropriate icons from the 2000+ available
- Generate Python code using the diagrams package
- Create and display the PNG diagram inline
- Save the diagram to your workspace directory
- Generate an editable .drawio file for further customization
Editable Diagrams with draw.io
Every diagram is automatically exported in two formats:
- PNG: For immediate viewing and sharing (displayed inline in Claude Desktop)
- .drawio: For editing in diagrams.net or draw.io
The .drawio files allow you to:
- Modify individual components, colors, and styles
- Add additional notes, annotations, or documentation
- Reorganize layout and positioning
- Export to other formats (SVG, PDF, JPEG, etc.)
- Collaborate with team members using a familiar tool
Simply open the generated .drawio file in your browser at diagrams.net - no installation required!
What's New
This fork extends the original AWS Diagram MCP Server with:
- ✅ Full Multi-Cloud Support: GCP, Azure, Kubernetes, hybrid, and multi-cloud architectures
- ✅ 27+ Comprehensive Examples: Ready-to-use templates across all providers
- ✅ Complete Icon Coverage: All 2000+ icons properly imported and available
- ✅ Enhanced Display: MCP ImageContent format for seamless inline rendering
- ✅ Editable Export: Automatic .drawio file generation for editing in diagrams.net/draw.io
- ✅ Bug Fixes: Resolved double
.pngextension and read-only filesystem issues - ✅ Icon Corrections: Fixed 28+ incorrect class names in examples
Code Examples
Below are Python code examples showing the diagrams package syntax. When using with Claude Desktop, you can simply describe what you want in natural language!
AWS Serverless Application
from diagrams import Diagram
from diagrams.aws.compute import Lambda
from diagrams.aws.database import Dynamodb
from diagrams.aws.network import APIGateway
with Diagram("Serverless Application", show=False):
api = APIGateway("API Gateway")
function = Lambda("Function")
database = Dynamodb("DynamoDB")
api >> function >> database
GCP Microservices
from diagrams import Diagram, Cluster
from diagrams.gcp.compute import CloudRun
from diagrams.gcp.network import LoadBalancing
from diagrams.gcp.database import SQL
with Diagram("GCP Microservices", show=False):
lb = LoadBalancing("load balancer")
with Cluster("Services"):
services = [CloudRun("api"), CloudRun("worker")]
db = SQL("database")
lb >> services >> db
Azure Web App
from diagrams import Diagram
from diagrams.azure.web import AppService
from diagrams.azure.database import SQLServer
from diagrams.azure.storage import BlobStorage
with Diagram("Azure Web App", show=False):
AppService("web") >> SQLServer("db") >> BlobStorage("storage")
Multi-Cloud Architecture
from diagrams import Diagram, Cluster
from diagrams.aws.compute import EC2
from diagrams.gcp.compute import CloudRun
from diagrams.azure.web import AppService
with Diagram("Multi-Cloud Setup", show=False):
with Cluster("AWS"):
aws = EC2("primary")
with Cluster("GCP"):
gcp = CloudRun("backup")
with Cluster("Azure"):
azure = AppService("cdn")
aws >> [gcp, azure]
Example Diagrams Gallery
Below are complete architecture diagram examples generated using this MCP server. These demonstrate real-world patterns across different cloud providers and deployment scenarios.
AWS Serverless Architecture
A production-ready serverless architecture using AWS services.
Architecture Components:
- Users connecting via HTTPS
- API Gateway as the entry point
- Multiple Lambda functions for compute
- DynamoDB for NoSQL database storage
GCP Serverless Architecture
A serverless architecture on Google Cloud Platform with managed services.
Architecture Components:
- Users connecting via HTTPS
- Load Balancer for traffic distribution
- Cloud Functions for serverless compute
- Firestore for document database
Azure Serverless Architecture
A serverless architecture on Microsoft Azure featuring fully managed services.
Architecture Components:
- Users connecting via HTTPS
- Application Gateway for routing and load balancing
- Function Apps for serverless execution
- Cosmos DB for globally distributed database
Kubernetes Architecture
A containerized application deployment on Kubernetes with full storage support.
Architecture Components:
- Ingress for external access and routing
- Service for internal load balancing
- Multiple Pods running containerized applications
- Persistent Volumes and Claims for stateful storage
Multi-Cloud Architecture
A distributed architecture spanning AWS, GCP, and Azure with global DNS routing for high availability.
Architecture Components:
- Global DNS (Route53) for intelligent traffic routing
- AWS Region: ELB → Lambda → DynamoDB
- GCP Region: Load Balancer → Cloud Functions → Firestore
- Azure Region: Load Balancer → Function Apps → Cosmos DB
Hybrid Cloud Architecture
An enterprise hybrid cloud setup connecting on-premises infrastructure to AWS cloud.
Architecture Components:
- On-premises application server and PostgreSQL database
- VPN Gateway for secure encrypted connectivity
- AWS VPC with EC2 instances
- RDS for database replication and disaster recovery
- S3 for backup and archival storage
Development
Testing
The project includes a comprehensive test suite to ensure the functionality of the MCP server. The tests are organized by module and cover all aspects of the server's functionality.
To run the tests, use the provided script:
./run_tests.sh
This script will automatically install pytest and its dependencies if they're not already installed.
Or run pytest directly (if you have pytest installed):
pytest -xvs tests/
To run with coverage:
pytest --cov=infrastructure_diagram_mcp_server --cov-report=term-missing tests/
Development Dependencies
To set up the development environment, install the development dependencies:
uv pip install -e ".[dev]"
This will install the required dependencies for development, including pytest, pytest-asyncio, and pytest-cov.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request to the GitHub repository.
License
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.
This is a derivative work based on awslabs/aws-diagram-mcp-server. Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
See NOTICE file for additional attribution information.
Links
- PyPI: https://pypi.org/project/infrastructure-diagram-mcp-server/
- GitHub: https://github.com/andrewmoshu/diagram-mcp-server
- Original Project: https://github.com/awslabs/mcp/tree/main/src/aws-diagram-mcp-server
- Diagrams Library: https://diagrams.mingrammer.com/
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file infrastructure_diagram_mcp_server-0.0.3.tar.gz.
File metadata
- Download URL: infrastructure_diagram_mcp_server-0.0.3.tar.gz
- Upload date:
- Size: 640.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.16 {"installer":{"name":"uv","version":"0.9.16","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4c48a6aebaec411782a57be83ad36fc916a640e875692fe81b3cc8e845b353a0
|
|
| MD5 |
de8b8a4ca760efbfb407241642343c34
|
|
| BLAKE2b-256 |
5d85c211a8c6dd4a0b09d5285ff00731b69cb8f0f5ae44eb89fd196f63eceec3
|
File details
Details for the file infrastructure_diagram_mcp_server-0.0.3-py3-none-any.whl.
File metadata
- Download URL: infrastructure_diagram_mcp_server-0.0.3-py3-none-any.whl
- Upload date:
- Size: 32.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.16 {"installer":{"name":"uv","version":"0.9.16","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
34f1eabfe76d6c1c713f167942a0b358e34056d9ebafe4153cc8df4da6328e88
|
|
| MD5 |
128a099bbd9b39d91ac9aa5390644f2b
|
|
| BLAKE2b-256 |
efd95e564d1b1de037b1d500c24a460b2836c265359f293fcc2ab609f7220abf
|