VERA MCP Server
Provides tools for interacting with the Unreal Engine editor, enabling AI agents to execute Python commands, capture viewport screenshots, read the output log, check editor status, and run natural-language commands through the VERA agent.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@VERA MCP Servercapture a screenshot of the viewport"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.

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).
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
.envand 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 aSKILL.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 |
π 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 |
|
Anthropic |
|
Gemini |
|
Local |
|
π‘ 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 |
| Read the open level: actor counts, classes, lights, static meshes. |
| Check whether an actor has a skeleton and can be animated. |
| Render an actor/viewport to an image so VERA can see it (works minimized). |
| Apply or scrub an animation on a skeletal actor. β |
| Create/ensure an IK Rig for a skeleton. β |
| Create/ensure an IK Retargeter between skeletons. β |
| Batch-retarget animations between skeletons. β |
| Run arbitrary Python against the |
Chained together, the animation tools are a full rig β retarget β animate β visually verify pipeline, driven entirely from chat.
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 |
| Execute Python in the editor and get the output back. |
| Capture the viewport. |
| Tail the Unreal output log. |
| Check the bridge/editor status. |
| 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.pyCopy the assembled
Plugin/folder into your own Unreal Engine project'sPlugins/VERA/directory.Enable Unreal's Python Editor Script Plugin.
Open VERA from the editor toolbar. On first launch it auto-installs its Python dependencies (one time) β no console magic.
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 |
| Cloud provider keys |
| Local server |
| Request timeout in seconds (raise it for slow cold starts) |
| Override the plugins directory |
| Skip the destructive-action gate (autopilot/testing) |
π Keys are saved to your
.envand 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_SpikeTrapBlueprint 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/ -qAdd a tool: create a
Toolsubclass invera/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

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:
π Support on Patreon β monthly or a one-off gift
β Tip on Ko-fi Β· πΊ Buy a Beer
π¬ Join the Discord β free, come say hi
β Star the repo and tell another dev β it genuinely helps.
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.
This server cannot be installed
Maintenance
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