Skip to main content
ClaudeWave
klimPaskov avatar
klimPaskov

hoi4-agent-tools

View on GitHub

MCP tools for coding agents to create and clean HOI4 focus trees, scripted GUIs, and maps

MCP ServersOfficial Registry1 stars0 forksTypeScriptApache-2.0Updated today
Install in Claude Code / Claude Desktop
Method: Manual
Claude Code CLI
git clone https://github.com/klimPaskov/hoi4-agent-tools
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "hoi4-agent-tools": {
      "command": "node",
      "args": ["/path/to/hoi4-agent-tools/dist/index.js"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Clone https://github.com/klimPaskov/hoi4-agent-tools and follow its README for install instructions.
Use cases

MCP Servers overview

# HOI4 Agent Tools

HOI4 Agent Tools is an MCP server for coding agents to understand Hearts of Iron IV event chains, technology systems, AI weights, and MTTH timing and to inspect, create, or clean up focus trees, scripted GUIs, and maps. Start it in a mod folder and it works there immediately, with offline renders for review.

## What it does

- Focus trees: inspect structure and references, render layouts, create trees, and reorganize existing branches.
- Scripted GUIs: trace GUI, GFX, scripted-GUI, and localisation links; render states; create or repair interface source.
- Maps: inspect provinces, states, regions, adjacency, supply, and railways; render layers; create and repair exact map data.
- Event chains: scan definitions and call sites, trace routes and state flow, lint references, render graphs, and compare revisions without editing event source.
- Technology trees: reconstruct technology and doctrine paths, folder layouts, unlocks, bonuses, grants, metadata, assets, and structural changes.
- AI and MTTH: evaluate weighted choices and timing across explicit scenarios, sweep uncertain inputs, simulate distributions, compare patches, and analyze declared stateful pools.

## Setup

Requires Node.js 22 or 24.

```bash
npm install --global hoi4-agent-tools@latest
```

Start the MCP with its working directory set to the mod you are editing. No config or per-mod registration is required: the server finds that mod automatically. Run `hoi4-agent-tools-setup --init` only when you want persistent discovery for several mod roots, a custom game path, or a remote deployment; see [Setup](docs/setup.md).

## Connect your agent

```bash
hoi4-agent-tools-setup --print-client-config
```

Paste the printed Codex or generic global-install entry into your MCP client, then restart it. The utility prints the correct command for the current operating system.

## Tools

| Tool                        | Purpose                                                                                 |
| --------------------------- | --------------------------------------------------------------------------------------- |
| `hoi4.focus_inspect`        | Read focus trees and report structural or reference problems.                           |
| `hoi4.focus_render`         | Produce fast HTML, SVG, JSON, and source-linked layout artifacts.                       |
| `hoi4.focus_raster`         | Produce a high-fidelity PNG review with decoded source icons.                           |
| `hoi4.focus_rewrite`        | Create or update a focus tree.                                                          |
| `hoi4.gui_inspect`          | Read a scripted GUI and its linked assets and logic.                                    |
| `hoi4.gui_render`           | Render GUI states and resolutions offline.                                              |
| `hoi4.gui_rewrite`          | Create or update a GUI source package.                                                  |
| `hoi4.map_inspect`          | Read map, state, province, region, supply, and railway data.                            |
| `hoi4.map_render`           | Render map layers and overlays.                                                         |
| `hoi4.map_rewrite`          | Create or update map data from an ordered list of exact changes.                        |
| `hoi4.event_inspect`        | Scan, trace, explain, lint, or assess event chains and their state flow.                |
| `hoi4.event_render`         | Render source-linked event routes, options, timing, state, scope, and unresolved edges. |
| `hoi4.event_compare`        | Compare event-chain topology and diagnostics between revisions.                         |
| `hoi4.tech_inspect`         | Scan, trace, explain, lint, and assess technology and doctrine systems.                 |
| `hoi4.tech_render`          | Render source layouts, dependency paths, unlocks, grants, metadata, and asset coverage. |
| `hoi4.tech_compare`         | Compare technology graphs, placements, references, diagnostics, and source overlays.    |
| `hoi4.probability_inspect`  | Locate weighted logic, candidates, required inputs, and supported analysis.             |
| `hoi4.probability_evaluate` | Evaluate exact values, probabilities, timing, bounds, and unresolved inputs.            |
| `hoi4.probability_sweep`    | Find sensitivity, breakpoints, cliffs, and rank reversals across declared ranges.       |
| `hoi4.probability_simulate` | Run deterministic sampled analysis with confidence and convergence data.                |
| `hoi4.probability_sequence` | Analyze declared recovery, caps, cooldowns, resets, timers, and terminal states.        |
| `hoi4.probability_compare`  | Attribute AI-weight and MTTH changes between real or proposed source.                   |
| `hoi4.probability_render`   | Render cached rankings, matrices, timing, sensitivity, sequence, and comparisons.       |

Large outputs are linked `hoi4-agent://` resources. For resources over 1 MiB, follow the `continuationUri` returned in `_meta` until it is `null`; clients may also request byte ranges with `?offset=<bytes>&length=<bytes>`.

## Coexistence with agent workflows

HOI4 Agent Tools provides HOI4 domain operations without replacing repository instructions such as `AGENTS.md`, skills, plans, or subagents. Its optional weighted-logic prompt helps an agent scope one probability analysis and then returns control to the normal workflow.

Connecting and listing tools does not scan mod source. Compact tool schemas and linked resources keep large diagnostics, renders, and diffs out of the agent's working context until needed. Event, technology, and probability tools analyze source without editing it; only `hoi4.*_rewrite` calls edit mod source.

## Create or clean content

Ask your agent in normal task language. A typical workflow is inspect, render, rewrite, then inspect the result. The agent can call a raster tool when a pixel review is useful without paying that cost during every structural operation.

- Focus trees: "Create a complete national focus tree for this route specification," or "Compact this existing tree into a balanced, readable layout." Existing trees can use a plan-free compact reflow; new trees use a complete plan. See [Focus trees](docs/focus.md).
- Scripted GUIs: "Create a scripted GUI for this mechanic," or "Render this window at common resolutions and fix clipping, missing assets, and click-region conflicts." See [Scripted GUIs](docs/gui.md).
- Maps: "Create a state from these exact provinces," or "Inspect this state and split these provinces while keeping supply and railway references valid." See [Maps](docs/map.md).
- Event chains: "Trace every route from this event and explain where its flags and variables change," or "Compare the workspace event graph with its previous revision and render the affected routes." See [Event chains](docs/events.md).
- Technology trees: "Explain everything this technology requires and unlocks," or "Compare this technology patch and render every affected folder and doctrine branch." See [Technology trees](docs/technology.md).
- AI and MTTH: "Compare these focus weights across peace, defensive-war, and low-stability scenarios," or "Show when this MTTH event becomes likely and which unknown inputs control the result." See [AI and MTTH analysis](docs/probability.md).

## HTTP

Use stdio for local MCP clients. For shared or remote deployments, see [HTTP](docs/http.md).

## Development

```bash
npm ci
npm run check
```

See [Development](docs/development.md). Apache-2.0 licensed. Hearts of Iron IV and Paradox Interactive are trademarks of their respective owners; this project is unaffiliated.
coding-agentshearts-of-iron-ivhoi4mcpmoddingmodel-context-protocol

What people ask about hoi4-agent-tools

What is klimPaskov/hoi4-agent-tools?

+

klimPaskov/hoi4-agent-tools is mcp servers for the Claude AI ecosystem. MCP tools for coding agents to create and clean HOI4 focus trees, scripted GUIs, and maps It has 1 GitHub stars and was last updated today.

How do I install hoi4-agent-tools?

+

You can install hoi4-agent-tools by cloning the repository (https://github.com/klimPaskov/hoi4-agent-tools) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is klimPaskov/hoi4-agent-tools safe to use?

+

klimPaskov/hoi4-agent-tools has not been audited yet by our security agent. Review the original repository on GitHub before using it in production.

Who maintains klimPaskov/hoi4-agent-tools?

+

klimPaskov/hoi4-agent-tools is maintained by klimPaskov. The last recorded GitHub activity is from today, with 7 open issues.

Are there alternatives to hoi4-agent-tools?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy hoi4-agent-tools to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: klimPaskov/hoi4-agent-tools
[![Featured on ClaudeWave](https://claudewave.com/api/badge/klimpaskov-hoi4-agent-tools)](https://claudewave.com/repo/klimpaskov-hoi4-agent-tools)
<a href="https://claudewave.com/repo/klimpaskov-hoi4-agent-tools"><img src="https://claudewave.com/api/badge/klimpaskov-hoi4-agent-tools" alt="Featured on ClaudeWave: klimPaskov/hoi4-agent-tools" width="320" height="64" /></a>

More MCP Servers

hoi4-agent-tools alternatives