Foundry provisions AWS with the SDK — no Terraform, no templates — then watches your entire Organization: 194+ accounts, 17 regions, ~130 resource types.
Author stacks in plain data. Foundry builds the dependency graph and executes via the SDK. Atomic deployments with best-effort rollback and immutable history.
Every resource, every region. A live CloudTrail pipeline combined with daily org-wide scans keeps your state fresh within seconds of any console mutation.
Ten proprietary subsystems designed to run your cloud at scale, safely and automatically.
Self-applying fixes for non-compliant resources gated by policy.
Rightsizing patches based on real-time AWS pricing API data.
Conversational interface for generating valid, governed stacks.
Pre-flight simulation that blocks dangerous deployment ripples.
Global network allocation map that prevents IP overlaps automatically.
Monitoring that auto-scales metrics as resources are forged.
Seamlessly imports existing AWS resources into Foundry stacks.
Audit every change back to its origin in the infrastructure graph.
Visualizes and enforces IAM boundaries across the whole organization.
One-click DR cloning of entire stacks to different regions.
Plain English in. A real, validated plan out. Hallucination foreclosed — every type is gated to the known AWS registry.
"Provision a public ALB in front of two EC2 instances in a new VPC with an RDS Postgres backend."
Foundry Bot
Synthesizing stack... Built VPC (10.0.0.0/16) and 4 subnets. Plan ready for review.
{
"name": "web-tier",
"resources": [
{
"id": "alb-primary",
"type": "AWS::ElasticLoadBalancingV2::LoadBalancer",
"properties": { "Scheme": "internet-facing" }
},
{
"id": "db-main",
"type": "AWS::RDS::DBInstance",
"properties": { "Engine": "postgres" }
}
]
}
~60 MCP tools. Everything Foundry does, available to Claude Code or any MCP client via Streamable HTTP.
$ claude code "plan changes for web-tier using foundry"
> Calling foundry_plan_stack(stack_id="web-tier")...
> Success. 2 resources to add, 0 to destroy.