Skip to main content
Glama

VERA β€” Virtual Engine Reasoning Agent

VERA β€” Virtual Engine Reasoning Agent

An AI co-pilot that lives inside the Unreal Editor. Chat with an LLM that inspects your level, runs editor tools, sees the viewport, and verifies its own work β€” powered by the brain you choose (cloud or fully local).

Discord Patreon License: MIT Unreal Engine Python

Why did we build it? Because pasting LLM snippets into Unreal and praying isn't a workflow β€” and because the Auto-Fixer turned out cheaper than a new keyboard. 🧱⌨️


Table of contents


Related MCP server: UE-MCP

Why VERA

Most "AI for Unreal" tools are a chat box that hands you a snippet to paste. VERA is an agent: you ask in plain language, and it plans, calls the tools it needs, looks at the result, and fixes things if something fails β€” inside your editor.

  • Your brain, your rules. OpenAI, Anthropic, Gemini, or any local OpenAI-compatible server. Run it 100% offline with a local model, or reach for a frontier model when you want more power. Keys live in your .env and never leave your machine.

  • It actually sees. VERA renders the viewport (via SceneCapture2D, even with the editor minimized) and reasons over the image β€” to inspect an actor, judge an animation, or critique a composition.

  • It acts safely. Read-only tools run freely; anything destructive asks for your approval first. A Read mode lets it look without touching anything.

  • It's extensible. Capabilities ship as opt-in plugins β€” a folder with tools/ and a SKILL.md. Write your own in minutes.

  • It's free & open. MIT licensed, no studio, no lock-in.

Features

🧠 Multi-provider brain

OpenAI Β· Anthropic Β· Gemini Β· any local OpenAI-compatible server (LM Studio, Ollama, llama.cpp, vLLM). Switch provider/model per tab, mid-conversation.

πŸ›°οΈ Agentic tool loop

Plans β†’ calls tools β†’ observes β†’ self-corrects β†’ verifies. Not a one-shot snippet generator.

πŸ‘οΈ Multimodal vision

Captures the viewport / individual actors and feeds the image to the model. Paste, drag, or copy images into the chat too.

🎞️ Animation pipeline

Build an IK rig, set up a retargeter, batch-retarget animations, play/scrub them, and visually verify β€” all from chat.

🧩 Plugin system

Drop-in tools/ + SKILL.md. Toggle per plugin. Per-plugin pip deps installed on demand.

πŸ”Œ MCP server

Expose the editor to Claude Code (or any MCP client): exec Python, screenshot, tail logs, status, run a VERA command.

πŸ›‘οΈ Safety modes

Ask (confirm destructive actions) Β· Auto (autopilot) Β· Read (inspect only).

πŸ’¬ Polished chat UI

Tabs, markdown + syntax highlighting, inline screenshots, slash-command menu, live tool narration, stop button, conversation windowing.

βš™οΈ Turnkey setup

First launch auto-installs its Python deps. Configure providers, local URL, and request timeout right in the panel.

πŸ–₯️ Cross-platform

Windows, macOS, Linux. No hardcoded paths.

The brain β€” bring your own LLM

VERA speaks the OpenAI /v1 standard, so it works with essentially any backend:

Provider

What you need

OpenAI

OPENAI_API_KEY

Anthropic

ANTHROPIC_API_KEY

Gemini

GEMINI_API_KEY (Google's OpenAI-compatible endpoint)

Local

VERA_LOCAL_BASE_URL β†’ your server's /v1 URL (LM Studio :1234, Ollama :11434, llama.cpp, vLLM…) β€” no key, no cloud, no cost

πŸ’‘ VERA is an agent, so the model needs solid tool-calling. For local, use a 30B+ coder model (e.g. Qwen2.5/3-Coder-32B); small models ramble. The first request to a cold local server loads the model β€” which can take minutes β€” so the request timeout is configurable right in Setup.

How it works

You ──▢ VERA chat (Qt/WebEngine UI inside the editor)
            β”‚  command + selected provider/model/mode
            β–Ό
        AgentLoop  ─────────────────────────────────────┐
            β”‚  1. ask the LLM (your provider) for a plan β”‚
            β”‚  2. LLM requests a tool                    β”‚  repeat until done
            β”‚  3. run the tool (gate if destructive) ─────
            β”‚  4. feed the result back to the LLM        β”‚
            └─▢ 5. final answer β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                         β”‚
                         β–Ό
              Unreal Editor (Python bridge β†’ the `unreal` API)

Every turn streams to the UI: you see the plan, each tool call, and the result as it happens β€” and you can Stop at any point.

Built-in tools

The agent ships with a core toolset (read-only tools need no approval; βœ‹ = gated):

Tool

What it does

inspect_level

Read the open level: actor counts, classes, lights, static meshes.

inspect_actor_animability

Check whether an actor has a skeleton and can be animated.

capture_actor

Render an actor/viewport to an image so VERA can see it (works minimized).

animate_actor

Apply or scrub an animation on a skeletal actor. βœ‹

ensure_ik_rig

Create/ensure an IK Rig for a skeleton. βœ‹

ensure_retargeter

Create/ensure an IK Retargeter between skeletons. βœ‹

retarget_animations

Batch-retarget animations between skeletons. βœ‹

run_ue_python

Run arbitrary Python against the unreal API β€” the universal escape hatch. βœ‹ (asks every call)

Chained together, the animation tools are a full rig β†’ retarget β†’ animate β†’ visually verify pipeline, driven entirely from chat.

Plugins

VERA Plugins

Capabilities ship as opt-in plugins so the core stays lean β€” you enable only what you want, and a plugin's pip dependencies are pulled in on demand. All plugins below are bundled and included 100% for free out of the box:

Plugin

What it adds

Blueprint Forge

Create Actor Blueprints via the Graph API (components, compile, save) β€” no clicking.

Computer Use

Last-resort screen control for editor UI that has no Python API (click and capture).

Local IQ

Raises a small local model's effective IQ with proven, reusable recipes.

Memory

Persistent memory across conversations β€” facts, conventions, decisions.

Mobile / Performance Doctor

Audits materials and mobile-compat issues; profiles the level.

Project Intelligence

Read-only analysis of the on-disk project: engine, plugins, assets.

Project Playbook

Loads this project's conventions, decisions and known traps into context.

Scene Vibe

Instantly sets the cinematic MOOD of the open level (cyberpunk, noir, aztec, etc.).

Source Control

Git source control for VERA: inspect diffs and create gated commits safely.

Write your own plugin

VERA_Plugins/my-plugin/
β”œβ”€β”€ plugin.json        # {"name","version","enabled", optional "deps":[...]}
β”œβ”€β”€ tools/*.py         # Tool subclasses (name, description, input_schema, execute)
└── SKILL.md           # when/how VERA should use it (injected into the system prompt)

A minimal tool:

from vera.agent.tool import Tool, ToolResult

class HelloTool(Tool):
    name = "say_hello"
    description = "Say hello. Use when the user greets VERA."
    input_schema = {"type": "object", "properties": {"to": {"type": "string"}}}
    def execute(self, args, ctx):
        return ToolResult(f"Hello, {args.get('to', 'world')}!")

Drop the folder in VERA_Plugins/, toggle it on in the Plugins tab β€” done.

MCP β€” drive the editor from your IDE

VERA ships an MCP server, so the AI in your favorite IDE or agent can drive your Unreal editor β€” write Python into it, read the log, screenshot the viewport, or run a full VERA command β€” without leaving your editor.

Drop this into your MCP client's config (e.g. .mcp.json):

{
  "mcpServers": {
    "vera-ue": {
      "command": "python",
      "args": ["-m", "vera.tools.mcp_server"],
      "env": { "VERA_UE_PROJECT_DIR": "C:/path/to/YourProject" }
    }
  }
}

Works with any MCP-capable client β€” Claude Code, Cursor, VS Code (Cline / Continue / Copilot), JetBrains Rider (AI Assistant), Windsurf, Zed, and more:

MCP tool

Purpose

ue_exec

Execute Python in the editor and get the output back.

ue_screenshot

Capture the viewport.

ue_log

Tail the Unreal output log.

ue_status

Check the bridge/editor status.

vera_command

Run a full natural-language VERA command (the agent pipeline).

Install

From source (developers)

git clone https://github.com/ezesubu/VERA.git
cd VERA
python PackageVERA.py
  1. Copy the assembled Plugin/ folder into your own Unreal Engine project's Plugins/VERA/ directory.

  2. Enable Unreal's Python Editor Script Plugin.

  3. Open VERA from the editor toolbar. On first launch it auto-installs its Python dependencies (one time) β€” no console magic.

  4. In Setup βš™, pick a provider and paste a key (or a local server URL), then chat.

Build the distributable plugin (UE 5.7)

python PackageVERA.py        # assemble from source + bundle deps + RunUAT + zip β†’ Packaged/

The output is a compiled, drag-and-drop plugin ready for the Epic Games Launcher / Fab. Want another engine version? Clone and build it yourself β€” the pipeline targets the latest UE.

Requirements

  • Unreal Engine 5.7 (latest)

  • The Python Editor Script Plugin (bundled with UE)

  • Internet access only if you use a cloud provider (local models run fully offline)

Configuration

VERA reads a .env at the repo root (and the Setup panel writes to it for you):

Variable

Meaning

OPENAI_API_KEY / ANTHROPIC_API_KEY / GEMINI_API_KEY

Cloud provider keys

VERA_LOCAL_BASE_URL

Local server /v1 URL (e.g. http://localhost:1234/v1)

VERA_LLM_TIMEOUT_S

Request timeout in seconds (raise it for slow cold starts)

VERA_PLUGINS_DIR

Override the plugins directory

VERA_AUTO_APPROVE

Skip the destructive-action gate (autopilot/testing)

πŸ”’ Keys are saved to your .env and never sent back to the frontend.

Usage

Open the VERA panel and just ask. A few things to try:

  • "How many actors are in this level, and how many are lights?"

  • "Create a BP_SpikeTrap Blueprint with a static mesh and a box collision."

  • "Retarget these animations from the UE4 mannequin to my character, then show me the idle."

  • "Audit this level for mobile performance issues."

  • "Set a horror vibe on the scene for a screenshot."

  • "Remember that this project uses the SM_ prefix for static meshes."

Switch Ask / Auto / Read in the composer to control how much freedom VERA has.

Architecture

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€ Unreal Editor ───────────────────────────┐
β”‚                                                                      β”‚
β”‚   VERA panel (Qt WebEngine UI)  ◀──┐                                 β”‚
β”‚        β”‚ command                   β”‚ events (stream)                 β”‚
β”‚        β–Ό                           β”‚                                 β”‚
β”‚   vera_server  ──▢  AgentLoop  ──▢ tools ──▢ Python bridge ──▢ unrealβ”‚
β”‚        β”‚                β”‚                                            β”‚
β”‚        β”‚                └─ plugins (VERA_Plugins/*)                  β”‚
β”‚        β–Ό                                                             β”‚
β”‚   MCP server  ◀── Claude Code / other MCP clients                   β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
            β–²
            └─ LLM provider (OpenAI / Anthropic / Gemini / local)
  • vera/agent/ β€” the AgentLoop, tool registry, sessions, the multi-provider client.

  • vera/llm/ β€” the OpenAI-compatible adapter (duck-types the Anthropic surface).

  • vera/tools/ β€” the MCP server and the UE socket connection.

  • vera/core/ β€” the editor server (vera_server) and the progress blackboard.

  • UE57/Content/Python/ β€” the editor scripts + the chat UI (vera_chat/).

  • UE57/VERA_Plugins/ β€” the studio plugins.

Contributing

Contributions are welcome β€” new tools, plugins, providers, fixes.

# run the test suite
python -m pytest tests/ -q
  • Add a tool: create a Tool subclass in vera/agent/tools/ β€” the registry discovers it automatically.

  • Add a plugin: see Write your own plugin.

  • Add a provider: extend the registry in vera/agent/models.py.

The codebase is Python + a thin C++ editor module, fully cross-platform, and covered by a test suite. Open an issue or a PR, or come chat in Discord.

FAQ

Do I need to know Unreal or Blueprints? No. You describe what you want in plain language and VERA builds it through the engine's code layer β€” assets, actors, components, properties, whole systems.

Does VERA wire the visual Blueprint nodes for me? Out of the box it creates the Blueprint, its components and properties, then compiles and saves it. Wiring the visual Event Graph (the "spaghetti") is one plugin away β€” a C++-backed plugin can reach the graph APIs that Python can't and generate the nodes too. That's the point of the plugin system: no ceiling.

Is it free? Does it phone home? MIT, free, and it can run 100% local with your own model β€” your keys and data never leave your machine.

Support β€” The Co-Pilot Pact

Support VERA

VERA is independent and open β€” no studio, no investors, no lock-in. It's free and runs on your own keys and hardware. If it earns its keep, you can keep it alive:

License

MIT β€” use VERA in your commercial and AAA projects. See LICENSE.

Credits

Conjured in the dark by maVERAick β€” Sith Lord of the Unreal Editor β€” mortal identity @ezesubu. βš‘πŸŒ‘

Core AI Team & Contributors:

  • Claude β€” Lead UI Architect

  • Antigravity (Gemini) β€” Lead Artist & Infrastructure

Come to the dark side. We have agents.

A
license - permissive license
-
quality - not tested
B
maintenance

Maintenance

–Maintainers
–Response time
–Release cycle
–Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ezesubu/VERA'

If you have feedback or need assistance with the MCP directory API, please join our Discord server