Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’° Finance & Fintech
  3. Hera Agent Unity
H
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/11/2026, 12:09:10 AM

Hera Agent Unity

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View Repository

Control and verify a live Unity Editor through a local, low-token MCP server.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "hera-agent-unity": {
      "command": "npx",
      "args": [
        "-y",
        "hera-agent-unity"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ’° More in Finance & Fintech

Documentation Overview

hera-agent-unity

Release GitHub stars License Go Unity Platform

hera-agent-unity

Give your AI coding agent hands, eyes, and a checklist inside Unity.

Codex, Claude, Cursor, Copilot, AntiGravity, and other shell-capable agents can inspect your live Unity Editor, change it, run it, test it, see the result, and keep fixing until the evidence says it is done.


Start in 3 steps Β· What can it do? Β· Why Hera? Β· How good is it? Β· Examples Β· Commands

English Β· ν•œκ΅­μ–΄


Hera in one minute

An AI can write Unity C# without Hera, but it cannot reliably know what your live Editor looks like after the code is written.

Normally the loop looks like this:

text
You ask the AI
   ↓
AI writes code
   ↓
You open Unity and wait for compile
   ↓
You copy the error back to the AI
   ↓
AI fixes it
   ↓
You press Play and explain what happened
   ↓
repeat...

Hera closes that loop:

text
You ask the AI
   ↓
AI uses Hera
   ↓
Unity compiles, runs, tests, clicks UI, captures the result
   ↓
Hera gives the real result back to the AI
   ↓
AI fixes what failed and checks again
   ↓
verified result

A simple way to think about it:

The AI is the brain. Hera gives that brain hands to operate Unity, eyes to inspect the result, and a checklist so it does not stop while the project is still broken.

Hera does not replace Unity and it does not replace the coding agent. It connects the two so the agent can work with facts from your actual project instead of guessing from source code alone.


What problem does it solve?

Unity development has a feedback loop that lives outside the source files.

A change can look correct in code and still fail because:

  • Unity did not compile it;
  • the wrong Scene is open;
  • a GameObject or Component is missing;
  • the Inspector has a different serialized value;
  • a Unity API changed in your Editor version;
  • the Console contains an exception;
  • Play Mode behaves differently from Edit Mode;
  • a button is visually present but cannot receive input;
  • a UI layout is technically valid but looks wrong;
  • the AI says "done" before it has actually checked any of those things.

Hera lets the agent ask the real Editor instead.

bash
hera-agent-unity status
hera-agent-unity console --type error
hera-agent-unity scene info
hera-agent-unity editor play --wait
hera-agent-unity test --mode PlayMode

If the selected Editor is not running, Hera can bootstrap the exact project before Connector discovery:

bash
hera-agent-unity --project C:/Projects/Game editor launch
hera-agent-unity --project C:/Projects/Game editor restart

The project version comes from ProjectSettings/ProjectVersion.txt; the matching Unity Hub install comes from UNITY_HUB_EDITOR or the platform default (%ProgramFiles%\Unity\Hub\Editor on Windows). Pass --hub-root for a custom Hub location. Startup uses normal Package Manager behavior, not -noUpm, and returns when the new process publishes that exact project's heartbeat. On Windows, Hera also restores the standard common-profile environment for the Unity child when an agent shell omitted it, so UPM path resolution still starts with the same baseline as a normal desktop launch.

The important part is not the command names. The important part is that the agent can observe β†’ change β†’ run β†’ verify β†’ repair without making you act as the courier between the AI and Unity.


What can it actually do?

You can use Hera for tiny one-line checks or for a full AI-assisted Unity workflow.

What you want the AI to doWhat Hera gives it
Check whether Unity is healthyLive Editor status, version, project, compile state, Console errors
Start or restart the right EditorLaunch or restart the exact project from its recorded Unity version and wait for that project's heartbeat
Understand the current SceneScene info, GameObject search, Component and Inspector reads
Change the SceneCreate, duplicate, rename, parent, move, or delete GameObjects
Edit ComponentsAdd, remove, inspect, and change serialized Component values
Work with project assetsFind, create, copy, move, or delete assets under Assets/
Run project-specific C#Execute C# inside the loaded Editor with access to Unity APIs and project assemblies
Make animationsAuthor AnimationClips and AnimatorController state machines
Test a featureRun EditMode and PlayMode tests and keep the result across domain reloads
Play the gameEnter Play Mode, wait for the real state change, inspect, then stop
See what Unity renderedCapture Scene/Game views or isolated objects, plus bounded uGUI identity/coordinate and Camera.main 3D physics evidence
Test Unity inputInspect uGUI raycasts, or synthesize Input System keyboard/mouse sequences, record them, and replay them in Play Mode
Build UIAuthor uGUI or UI Toolkit layouts and verify the generated result
Recreate a reference UIMeasure a reference, build the real Unity UI, capture it, compare, and iterate
Improve game feelGive the agent recipes for shake, hit stop, feedback, camera, sound, rewards, and accessibility
Clean up generated-looking UIDetect common spacing, hierarchy, typography, color, and decoration problems
Create your own studio commandsAdd project-specific [HeraTool] actions that appear automatically
Work with several open EditorsTarget the intended project and keep that project identity through port changes
Require approval for risky workPreflight destructive operations and continue only with the matching approval token

In short, Hera is not just a "press Play" remote. It is a bridge for the whole edit-and-check loop around a running Unity project.


Why use Hera?

1. The AI can check its own work

Without Editor access, the agent often ends with:

"This should work."

With Hera, it can finish with evidence such as:

text
compile: passed
console errors: 0
EditMode tests: 18/18
PlayMode tests: 6/6
button click: verified through EventSystem
final Game View: captured

That difference is the main reason Hera exists.

2. You stop being the copy-and-paste bridge

You no longer need to repeatedly:

  1. copy code from the AI;
  2. switch to Unity;
  3. wait for compile;
  4. copy errors back;
  5. explain the Scene hierarchy;
  6. press Play;
  7. describe what happened.

The AI can perform most of that loop itself.

3. It works with the tools you already use

The normal production path is a CLI. Any agent that can run shell commands can use it.

  • Codex
  • Claude Code
  • Cursor
  • GitHub Copilot
  • AntiGravity
  • scripts and CI jobs
  • your own automation

No Python server is required. MCP is optional, not mandatory.

4. It is designed for AI context, not just humans

A giant tool response becomes more input for the model to read. Hera therefore gives common commands compact views such as IDs-only GameObject searches and on-demand tool schemas.

The goal is simple: send the agent the smallest amount of Unity state that is enough to make the next decision.

5. It knows that "request sent" is not the same as "work finished"

Unity recompiles scripts, reloads domains, changes ports, enters Play Mode, runs tests, and sometimes drops a connection while doing it.

Hera tracks these workflows instead of treating a successful HTTP send as proof that Unity is finished.

6. It can grow with your project

Start with the built-in commands. Later you can add a [HeraTool] for the workflow your own project repeats every day: build a dungeon room, validate a quest graph, bake a table, spawn a test battle, or check your studio-specific asset rules.


How good is it?

Hera avoids vague "AI magic" claims. The repository keeps concrete measurements and compatibility evidence instead.

Small responses for common agent reads

Measured low-token baselines for list --compact are about 93 estimated tokens across the tested Unity versions. find_gameobjects --ids measured 49 to 55 estimated tokens in the retained cross-version fixtures.

Unity Editorlist --compactfind_gameobjects --ids
2022.3.62f293 T54 T
2023.2.22f193 T54 T
6000.3.5f293 T49 T
6000.5.0f193 T55 T

T is a simple ceil(UTF-8 bytes / 4) estimate for Hera's CLI payload only. It is not provider billing telemetry. Full methodology: token-reduction benchmark.

Compatibility is checked across Unity generations

The current Connector source is 0.0.86 and the current CLI release is v0.2.0. The Connector's exact source passed the release compile gate in these representative Editors:

Unity EditorResult
2022.3.62f2PASS
2023.2.22f1PASS
6000.0.35f1PASS
6000.3.5f2PASS
6000.5.6f1PASS

CLI and Connector versions are intentionally separate.

v0.2.0 was exercised in a live Editor, not only compile-tested

The final release candidate was loaded as Connector 0.0.86 in Unity 6000.5.6f1 with Input System 1.20.0 and driven through real Play Mode before release. The retained smoke evidence recorded:

  • 31 tools / 80 actions from the live catalog;
  • keyboard down/up and mouse position synthesis in Play Mode;
  • a bounded input sequence completing successfully;
  • an input recording with 5 events / 588 bytes, then two successful replays of the same file;
  • zero Hera-owned controls left held after replay;
  • Connector ReleaseGateTests: 18/18 PASS;
  • Unity Console errors after the run: 0;
  • graceful Editor shutdown with 0 new scene-recovery backups, while the disposable fixture manifest and lock file were restored.

This complements the five-version compile matrix with an end-to-end Editor regression on the released capability set.

A real game-creation run reached a verified playable result

The retained Crystal Forge scenario asked an AI to author code and tests, build UI, compile, drive Unity EventSystem input, run tests, capture the rendered result, and leave the Editor clean.

Final result: PASS after repair. First attempt: FAIL.

The measured execution window was 15 minutes 52 seconds. The run is useful because the failures were kept instead of being edited out. It showed why a closed verification loop matters: hidden state was correct before the UI was actually visible, and the agent had to observe, repair, and verify again.

This is not a claim that Hera makes every task succeed on the first try, and it is not an "X% smarter AI" benchmark. It demonstrates something more practical: Hera can give an agent enough real Editor feedback to find and repair integration failures instead of stopping at the first plausible answer.

Full evidence: Crystal Forge real-world benchmark.


How do I use it?

There are only two pieces:

text
your computer                 your Unity project
──────────────                ──────────────────
Hera CLI        <---------->  Hera Unity Connector

Step 1. Install the CLI

The simplest cross-platform option is npm:

Terminal
npm install --global hera-agent-unity

Or use the native installer.

Windows PowerShell

powershell
powershell -ExecutionPolicy ByPass -c "irm https://raw.githubusercontent.com/NotNull92/hera-agent-unity/main/install.ps1 | iex"

macOS / Linux

Terminal
curl -fsSL https://raw.githubusercontent.com/NotNull92/hera-agent-unity/main/install.sh | bash

Check it:

bash
hera-agent-unity version
Other CLI installation methods

Go install

bash
go install github.com/NotNull92/hera-agent-unity@latest

Manual

Download a binary from GitHub Releases, then run:

bash
hera-agent-unity install

Step 2. Add the Unity package

In Unity:

text
Window -> Package Manager -> Add package from git URL

Paste:

text
https://github.com/NotNull92/hera-agent-unity.git?path=AgentConnector

Or add it to Packages/manifest.json:

json
"com.notnull92.hera-agent-unity": "https://github.com/NotNull92/hera-agent-unity.git?path=AgentConnector"

The Connector starts automatically when the Editor opens.

To pin an existing Connector tag:

json
"com.notnull92.hera-agent-unity": "https://github.com/NotNull92/hera-agent-unity.git?path=AgentConnector#connector-<version>"

The current released Connector pin is:

text
https://github.com/NotNull92/hera-agent-unity.git?path=AgentConnector#connector-0.0.86

Step 3. Open Unity and check the connection

bash
hera-agent-unity doctor --json
hera-agent-unity status

You should see the real project path, Unity version, Editor state, and connection information.

Now you can simply tell your agent:

text
Use hera-agent-unity for this Unity project.
Check the current Editor state first.
Make the requested change.
Compile it, read the real Console errors, verify the changed object or UI,
and do not say it is finished until Unity is in a clean state.

That is the normal Hera workflow.


What can I do with it?

Fix a compiler or runtime error

text
Use Hera. Read the Unity Console, find the actual error, fix the code,
compile again, and keep repeating until the error Console is clean.

Typical commands behind the scenes:

bash
hera-agent-unity console --type error --lines 20
hera-agent-unity editor refresh --compile
hera-agent-unity console --type error --lines 20

Build a feature and prove it works

text
Implement the inventory filter.
Use Hera to compile it, run the relevant EditMode and PlayMode tests,
enter Play Mode if needed, and report the final evidence.

Reproduce a gameplay bug

text
Open the correct Scene, enter Play Mode, inspect the related objects,
reproduce the bug, fix it, then reproduce the same path again to prove the fix.

Build UI from a reference image

Hera can give the agent a measurement loop instead of an eyeballing loop:

text
reference image
   ↓ sample colors / measure layout
Unity UI
   ↓ capture
compare
   ↓ fix
capture again

Example commands:

server.ts
hera-agent-unity ui_doc export --path /Canvas/HUD
hera-agent-unity ui_doc sample --image hud_ref.png --region "0,0,1,0.2"
hera-agent-unity ui_doc apply --file hud.json --parent /Canvas --mode upsert
hera-agent-unity ui_doc capture --out hud_built.png

Hera supports both uGUI and runtime UI Toolkit. The selected UI system is explicit, so the agent does not silently mix the two.

Verify buttons without guessing screen coordinates

bash
hera-agent-unity input state
hera-agent-unity input inspect --path /Canvas/StartButton --details true
hera-agent-unity input click --path /Canvas/StartButton --settle_frames 2

This verifies Unity's EventSystem path. It is not a physical Windows/macOS mouse click, so Hera reports those two kinds of evidence separately.

Projects that already use the optional Input System package can also verify gameplay input without adding a Hera dependency:

bash
hera-agent-unity input state --backend inputsystem
hera-agent-unity input keyboard --key space --mode press
hera-agent-unity input mouse --mode click --button left --position 640,360
hera-agent-unity call input --json '{"action":"sequence","steps":[{"action":"keyboard","key":"space","mode":"down"},{"action":"keyboard","key":"space","mode":"up"}]}'
hera-agent-unity call input --json '{"action":"record","mode":"start"}'
hera-agent-unity call input --json '{"action":"record","mode":"stop"}'
hera-agent-unity call input --json '{"action":"replay","path":"Library/HeraAgent/Recordings/input.json"}'

Keyboard, mouse, bounded sequence, recording capture, and replay require Play Mode. Recordings use the bounded hera.input-recording/1 JSON format under the project or system temp directory; replay validates the complete file before mutation and reuses sequence-owned cleanup. Hera resolves the package at runtime, never creates devices, and releases any held controls when Play Mode exits.

Automate repetitive Scene work

You can ask an agent to:

  • create a test arena;
  • place prefabs under a new root;
  • add and configure Components;
  • create ScriptableObject assets;
  • wire Animator states;
  • save the Scene;
  • run validation afterwards.

Create studio-specific tools

If your project has a repeated workflow, expose it as a custom [HeraTool]. The tool appears in Hera's live catalog automatically.

Examples:

  • build_test_battle
  • validate_item_database
  • spawn_quest_fixture
  • bake_localization_table
  • check_prefab_rules

Hera can therefore start as a generic Unity bridge and gradually become a CLI for your own game production pipeline.


Ultra Hera: make "done" mean checked

Ultra Hera

Do the work. Check the work. Only then report the result.

Ultra Hera is a verification rule for AI-assisted Unity work. It does not write the feature by itself. It tells the agent how carefully to check the work it just did through Hera.

Find it in:

text
HeraAgent -> Hera Settings -> Ultra Hera
ModeEasy meaning
OffNo extra verification rule.
LightDefault. Compile/check state, read errors, and re-read the changed target before finishing.
UltraFor important work. Add stronger evidence such as tests, Play Mode, Inspector reads, screenshots, or ui_doc capture.

Think of Light as a seatbelt check and Ultra as a pre-flight inspection.

Use Ultra when the request sounds like:

  • "verify it exactly";
  • "play it and confirm";
  • "match this UI";
  • "check the Inspector too";
  • "do not finish until all tests pass".

The goal is simple: the agent should not close the task while Unity is still broken.


More than Editor control

Hera includes optional guidance and authoring systems that help the agent do more than change raw objects.

UI systems

BackendBest forHera creates
uguiCanvas-based UIGameObjects, RectTransforms, Components
uitkRuntime UI Toolkitvalidated UXML, USS, PanelSettings, UIDocument

Choose explicitly:

bash
hera-agent-unity asset-config ui-system uitk

Hera validates the selected backend instead of guessing from the Scene.

Game Feel Mode (Beta)

Helps the agent think about how gameplay feels, not only whether it functions: screen shake, hit stop, knockback, camera, control feel, sound, reward presentation, haptics, and accessibility constraints.

bash
hera-agent-unity asset-config gamefeel on
hera-agent-unity game_feel hit-stop

The knowledge is guidance. Hera does not secretly add heavy runtime systems to your game.

Game Feel UI Mode (Beta)

Adds practical UI feedback recipes such as hover scale, press squash, popup entrance, count-up text, health-bar response, cooldown feedback, and accessibility baselines.

bash
hera-agent-unity asset-config gamefeel-ui on

Unity De-slop Mode (Beta)

Helps agents catch common generated-looking UI habits: unnecessary decoration, weak spacing systems, box-in-box layouts, decorative italics, inconsistent colors, and other visual tells.

bash
hera-agent-unity asset-config uislop on
hera-agent-unity ui_slop box-in-box

The rules include exceptions so functional game UI such as inventory cells is not flattened just because it is repetitive.


Command overview

You do not need to memorize these. They are here so you can understand the surface Hera gives an agent.

CommandPlain-language purpose
doctor --json"Is Hera installed and can it reach Unity?"
status / pingCheck Editor state and liveness.
list --compactDiscover available built-in and project-specific tools cheaply.
call <tool>Validate a strict live tool contract, then call it.
consoleRead or clear the real Unity Console.
sceneInspect, load, save, list, or close Scenes.
find_gameobjectsSearch the loaded Scene hierarchy.
manage_gameobjectCreate and edit GameObjects.
manage_componentsRead, add, remove, or modify Components.
manage_assetsWork with project assets under Assets/.
manage_animationAuthor AnimationClips and AnimatorController state machines.
execRun arbitrary project-aware C# inside the Editor.
editorLaunch/restart the exact project, or play, stop, pause, refresh, and compile.
testRun or resume Unity tests.
taskInspect durable test/package work without contacting Unity.
screenshotCapture Scene/Game views or isolated objects; optionally return bounded uGUI or Camera.main-constrained 3D collider identity/coordinates, including metadata-only modes.
ui_docInspect, build, sample, and capture Unity UI.
inputTest uGUI, or synthesize optional Input System keyboard/mouse/sequence input and record/replay it in Play Mode.
profilerRead profiler hierarchy snapshots.
game_feelQuery game-feel guidance.
ui_slopQuery UI cleanup guidance.
batchRun several operations in one request.
custom [HeraTool]Call tools defined by your own Unity project.

Full reference: docs/COMMANDS.md.


Teach your AI agent to use Hera automatically

You can put Hera's operating rules in the project so the agent knows to inspect Unity before guessing.

Codex plugin

bash
codex plugin marketplace add NotNull92/hera-agent-unity --ref main

Then open /plugins, choose Hera Agent Unity, and enable Hera Unity.

Standalone Agent Skill

Terminal
npx skills add NotNull92/hera-agent-unity --skill hera-agent-unity --agent codex

Shared AGENTS.md

bash
hera-agent-unity doctor --agent-rules --compact >> AGENTS.md

The compact default guidance is intentionally small. Its reviewed baseline is 2,277 UTF-8 bytes and contains the important rules for bootstrap, targeting, approvals, safety, and verification. The full guide is available on demand.

This repository also ships templates for Cursor, Copilot, AntiGravity, Continue, and other agent environments under examples/rules.


Safety and reliability in plain language

Hera can make real changes to a Unity project, so "fast" is not enough. It also needs to know when to stop.

It identifies the project, not just a port number

Unity can change its local port after a domain reload or restart. Hera prefers the normalized full project path as the Editor identity and treats the port as a temporary endpoint.

If several Editors are open, use:

bash
hera-agent-unity --project /full/path/to/project status

Ambiguous targeting fails instead of guessing.

Risky operations can require approval

Approval-gated work is preflighted first. The returned token is tied to that exact request and is single-use. Changing the target or arguments invalidates the approval.

It does not blindly repeat an uncertain mutation

If a response disappears during a reload or timeout, Hera checks fresh Editor ownership/state before an eligible retry. A mutation is not resent merely because the network response was unclear.

Slow tests can be resumed instead of started again

A long Test Runner job can outlive a normal request window. Hera stores durable run state so an agent can resume waiting for the same run instead of accidentally starting another test execution.


Unity versions

Unity versionStatusRepresentative verification
2022.3 LTSSupported2022.3.62f2
2023.2Supported2023.2.22f1
6000.0 - 6000.4SupportedUnity 6 compatibility buckets
6000.5+Supported6000.5.6f1 release gate
Older than 2022.3Not supportedMinimum is Unity 2022.3

Version-specific behavior is checked against live Editors rather than assumed from one Unity version.


CLI first, MCP optional

The production default is the normal CLI.

text
AI / terminal -> Hera CLI -> localhost Connector -> Unity Editor

That means any shell-capable coding agent can use Hera without configuring MCP.

CLI v0.1.0+ also ships an experimental, default-off, stdio-only MCP adapter for hosts that intentionally want MCP discovery and invocation. It uses the same Hera execution core instead of creating a second Unity backend.

text
AI with MCP -> optional Hera MCP adapter -> same Hera execution core -> Unity

MCP does not magically make the model smarter. It is another way to expose the same Unity capabilities. Hera keeps the CLI path as the default because it remains simple, explicit, and broadly compatible.

MCP setup and compatibility boundaries: docs/MCP.md.


Current release

  • CLI / GitHub Release: v0.2.0 with five native binaries
  • npm: 0.2.0 (latest)
  • Unity Connector / OpenUPM: 0.0.86 (latest)
  • Official MCP Registry: 0.2.0 (active, latest)
  • License: Apache-2.0

The two version numbers are separate on purpose. The CLI and the Unity package can evolve independently while keeping their compatibility contract explicit.

v0.2.0 expands Hera's live verification loop with exact-project Editor launch/restart, bounded Input System sequence/record/replay, UI and 3D physics screenshot evidence, and opt-in restricted exec while keeping the CLI-first default and 31 top-level tools. The released Connector exposes 80 actions, passed the five Unity compile buckets, and completed the live 6000.5.6f1 regression above with 18/18 Connector release gates and 0 Console errors.

For release-by-release engineering detail, read CHANGELOG.md instead of treating the main README as a migration log.


How does Hera work internally?
text
Terminal / AI agent
        |
        | hera-agent-unity command
        v
Go CLI
        |
        | localhost HTTP
        v
Unity Editor package
        |
        | serialized Unity main-thread work
        v
Scene, Console, Play Mode, Assets, Tests, UI

The Unity package opens a local HTTP listener. The CLI selects the intended Editor from local heartbeat state and sends the command. Unity work is marshaled to the Editor main thread.

Domain reloads and long-running operations use filesystem-backed state so compilation, tests, and recovery can survive the HTTP listener being recreated.

Architecture details: docs/ARCHITECTURE.md.

Advanced exec, token, and async notes
  • Prefer dedicated commands over arbitrary exec when one exists.
  • Use small projections such as find_gameobjects --ids when IDs are enough.
  • Side-effecting exec snippets should normally return null or nothing rather than a large status object.
  • Do not return a full UnityEngine.Object unless you truly need its reflected graph.
  • Use --strict or throw an exception when a logged error must fail the CLI operation.
  • Use --security-mode restricted when a snippet only needs platform APIs and should be denied file, network, process, reflection, native, threading, UnityEditor, and project-assembly access. Full Access remains the default.
  • Use exec --check when you want to compile-check a snippet without executing it.
  • Long asynchronous workflows are better represented as tracked [HeraTool] actions or durable task/test operations than as detached work inside a one-shot exec.

The complete agent operating guide is AGENTS.md.


FAQ

Does Hera make the AI smarter?

No. Hera gives the AI better access to your real Unity state and better ways to verify the result. The coding model still makes the design and implementation decisions.

Does it need Python?

No. The normal install is one native CLI plus one Unity package.

Do I need MCP?

No. The CLI is the production default. MCP is optional and default-off.

Can it control more than one open Unity Editor?

Each command targets one Editor. If several are open, use the full --project path for the clearest selection. Hera tracks the selected project identity even if the local port changes.

Can it physically click the Unity window?

The input command sends Unity EventSystem events for uGUI QA and can synthesize optional Input System keyboard/mouse state in Play Mode. Both prove Unity-level behavior, not a physical operating-system click. Physical click evidence must be reported separately.

Can it build UI Toolkit as well as uGUI?

Yes. Hera has separate uGUI and runtime UI Toolkit backends. Select the backend explicitly instead of mixing them.

What should I do if it cannot connect?

bash
hera-agent-unity doctor --json

Also check that the Unity package is installed and the Editor has finished compiling.

Where are the detailed docs?

  • Commands
  • Troubleshooting
  • Architecture
  • C# Connector
  • MCP adapter
  • UI document contract
  • Agent operating guide

Projects using Hera

ProjectNotes
NoMoreRollsSolo-developed Unity game. Built with AI driving the Editor through Hera.

https://github.com/user-attachments/assets/15d353e4-b7bb-4534-bbca-c27de0792147

NoMoreRolls - full Play Mode video from a Unity game built with Hera-assisted Editor work.


Author

Victor - Unity/C# developer with 6+ years of live-service MMORPG production experience.

GitHub: @NotNull92

Discord: Join the Hera community


Support

Hera is free and licensed under Apache-2.0. If it saves you time, you can support development:

Support on Ko-fi


License

Apache License 2.0. See LICENSE and NOTICE.

Related MCP Servers

View all in Finance & Fintech View all alternatives
  • Vantic logoVantic

    Verify an AI agent's payment authority: signed mandates, allowlists, and tamper-proof receipts.

    πŸ’° Finance & Fintech0 views
    Compare vs Vantic β†’
  • H
    Hr Management Ai Mcp

    Hr Management Ai MCP server. Tools: leave calculator, payroll estimator, performance review....

    πŸ’° Finance & Fintech0 views
    Compare vs Hr Management Ai Mcp β†’
  • F
    Flow

    Live US diesel prices and optimized stop-by-stop fuel plans for trucking. Free snapshot tool.

    πŸ’° Finance & Fintech1 views
    Compare vs Flow β†’
  • Plugin logoPlugin

    Circulara Observe MCP plugin - meters your AI agents' token spend and carbon, free tier.

    πŸ’° Finance & Fintech0 views
    Compare vs Plugin β†’

Frequently Asked Questions about Hera Agent Unity

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "hera-agent-unity": { "command": "npx", "args": ["-y", "Hera Agent Unity"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewHera Agent Unity AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/hera-agent-unity?style=directory)](https://allmcps.com/mcp/hera-agent-unity)
HTML Embed
<a href="https://allmcps.com/mcp/hera-agent-unity"><img src="https://allmcps.com/api/badge/hera-agent-unity?style=directory" alt="Hera Agent Unity on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’°Finance & Fintech
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
0/4 checks healthy over the last 6h
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedAllMCPs Server logo

AllMCPs Server

The official MCP server for AllMCPs.com - submit and manage tools directly from your AI. The open directory for MCP servers. Connect Claude, Cursor, Windsurf, and AI agents to databases, tools, files, and APIs. Explore 3,181+ servers. AllMCPs is the premier, open directory for discovering, evaluating, and installing Model Context Protocol (MCP) servers to equip AI agents and LLMs with real-world superpowers.

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’° Finance & Fintech β†’Best MCP servers for Finance & Fintech β†’Alternatives to Hera Agent Unity β†’Install in Claude DesktopInstall in CursorInstall in VS Code