MacroMod is PolicyEngine's suite of open-source macroeconomic simulation models for scoring public policy. Where microsimulation tells you who pays what the morning after a reform, MacroMod traces the second act — how people work, save, and invest differently, how firms adjust capital, and how wages, interest rates, and the revenue estimate move with them — in a structural, general-equilibrium engine.
🌐 macromod.vercel.app · a PolicyEngine project
Every model in the suite scores the same PolicyEngine reform objects and reports the same real-world quantities (GDP, consumption, investment, government, revenue, debt in £bn), so results are comparable across model classes. The structural VAR is the empirical exception: a Python replication of the Bank of England's Bayesian SVAR for the UK, it reads the current state of the economy in structural-shock terms and forecasts it, but does not score PolicyEngine reform objects yet.
| model | status | repo |
|---|---|---|
| Overlapping generations (OG-UK) | shipped | PSLmodels/OG-UK |
| OBR macroeconometric model | shipped | PolicyEngine/obr-macroeconomic-model |
| Bank of England structural VAR (boe-svar) | shipped (analysis & forecasting; reform scoring: planned) | PolicyEngine/boe-var-model |
| PolicyEngine tax-benefit microsimulation | shipped (household calculator & household reform impacts; population-level scoring: planned) | PolicyEngine/policyengine.py |
| More model classes | planned | — |
PolicyEngine is the micro member: person/household-resolution taxes and benefits for the UK and US — the same engine that powers policyengine.org — complementing the macro models.
The models live in their own repositories. This repo hosts the MacroMod
website and the integration layer (integration/) — a macromod CLI
and MCP server over the models, with CI auto-deploying the hosted MCP server
to Modal on every merge — merges to the model repos
(obr-macroeconomic-model, boe-var-model) trigger the same redeploy via
repository_dispatch — so you can drive them from any AI workflow.
The OBR emulator also runs as a live dashboard: obr-macroeconomic-model.vercel.app.
The OLG model is a Python package; pip installs it straight from GitHub, no clone needed (Python 3.11–3.13).
pip install git+https://github.com/PSLmodels/OG-UKfrom datetime import datetime
from policyengine.core import ParameterValue, Policy
from policyengine.tax_benefit_models.uk import uk_latest
from oguk import solve_steady_state, map_to_real_world
# Build a reform from real PolicyEngine parameters (basic rate 20% → 21%)
param = uk_latest.get_parameter("gov.hmrc.income_tax.rates.uk[0].rate")
reform = Policy(name="Basic rate 21%", parameter_values=[
ParameterValue(parameter=param, value=0.21,
start_date=datetime(2026, 1, 1))])
# Solve baseline and reform steady states (~5–15 min each)
baseline = solve_steady_state(start_year=2026)
reform_ss = solve_steady_state(start_year=2026, policy=reform)
# Map model units → current-price £bn
impact = map_to_real_world(baseline, reform_ss)
print(f"GDP change: {impact.gdp_change:+.1f}bn ({impact.gdp_pct:+.3f}%)")See the OG-UK model page for the full guide — parameter paths, solver options, structural shocks, and the transition path — the OBR model page for the macroeconometric emulator, the SVAR model page for the structural VAR, and the documentation for how the model classes differ and when to use which.
The connect page covers three ways to use the models:
-
MCP — the hosted Model Context Protocol server is live at
https://policyengine--macromod-mcp-serve.modal.run/mcp. Add it as a custom connector in Claude or ChatGPT, or in Claude Code:claude mcp add --transport http macromod https://policyengine--macromod-mcp-serve.modal.run/mcp
Nine tools:
score_reform,list_reform_variables,forecast_uk,latest_shocks,model_summary, the PolicyEngine household tools (calculate_household,household_reform_impact,list_reform_parameters), andog_score_reform_steady_state— the last works locally only: OG-UK is deliberately excluded from the hosted image (a score takes tens of minutes), so the tool errors on the hosted server; usemacromod og-scoreinstead. The server runs serverless and scales to zero — the first call after idle may take ~10 s to wake. -
CLI — the
macromodCLI (score,variables,forecast,shocks,summary,household,household-impact,parameters,og-score) lives inintegration/; PyPI publish is planned. Install it — with all three hosted-model packages and their data, no clone — via:pip install "macromod[models] @ git+https://github.com/PolicyEngine/MacroMod#subdirectory=integration" -
Code — drive each model's Python API yourself.
A static site in the populace.dev design language — no build step.
python3 -m http.server 8000 # then open http://localhost:8000/| path | page |
|---|---|
index.html |
the suite — idea, models, pipeline, outputs |
olg/ |
the OG-UK model page — install, quickstart, options, shocks, outputs |
obr/ |
the OBR macroeconometric model — quickstart, solver, levers, forecasting |
svar/ |
the UK structural VAR — the model, quickstart, outputs, validation |
pe/ |
PolicyEngine tax-benefit microsimulation — household calculator, reforms, population analysis |
docs/ |
documentation — the model classes compared and when to use which |
connect/ |
connect it or code it — MCP / CLI setup and the Python API |
Deployed on Vercel (PolicyEngine team). vercel.json enables clean URLs.
A new model touches a fixed set of places. Update all of them so the site stays consistent (this is exactly the set the OBR model added):
<slug>/index.html— a new model reference page. Copyolg/orobr/as the template:<body class="doc">, the shared nav, and the section rhythm (what it is → quickstart → how it works → levers → calibration).index.html— add a.strategy-cardin the#modelsgrid linking to/<slug>/.docs/index.html— add a.doc-indexcard, a column in the comparison table, and a when-to-use bullet in#choose.connect/index.html— add a<div class="model-pane" data-model="<slug>">in the#codesection and a button in#model-seg(the model selector JS toggles ondata-model).- Nav — every page's
.nav-linksis identical; no change needed unless you add a top-level section. README.md— the models table, the quickstart links, and the site-paths table above.
Keep model copy grounded in the model's own repo/docs, and label any non-real numbers as illustrative.
-
macromodCLI (inintegration/; PyPI publish still to come) - Local MCP server (
python -m macromod.mcp_server) - Hosted MCP server (
https://policyengine--macromod-mcp-serve.modal.run/mcp, auto-deployed by CI) - OG-UK steady-state scoring (
macromod og-score/og_score_reform_steady_state, local only) - Population-level PolicyEngine reform scoring
- Additional macroeconomic model classes
- See #1 — Rust port of the solver core
Open source · a PolicyEngine project.