Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here
embark-claude-index logo

embark-claude-index

embark-claude-index

developmentClaude Codeby EmbarkStudios

Summary

MCP server providing fast code navigation for Unreal Engine projects. Indexes AngelScript, C++, Blueprints, and assets. 11 search tools with sub-20ms queries.

Install to Claude Code

/plugin install embark-claude-index@embark-claude-index

Run in Claude Code. Add the marketplace first with /plugin marketplace add EmbarkStudios/UnrealClaudeFileHelper if you haven't already.

README.md

embark-claude-index

Fast code search for Unreal Engine projects in Claude Code.

What it does

  • 11 MCP tools for searching types, members, files, assets, and code
  • Indexes AngelScript, C++, Blueprints, and config files
  • Sub-20ms queries across 100K+ types and 600K+ members
  • Full-text code search via Zoekt (optional)
  • Offline asset search across 400K+ content assets

Quick Install

1. Add the marketplace and install

In Claude Code, run:

/plugin marketplace add EmbarkStudios/UnrealClaudeFileHelper
/plugin install embark-claude-index@embark-claude-index

Or use the interactive plugin manager:

/plugin

2. Restart Claude Code

Restart to load the plugin and MCP tools.

3. Run setup

After restart, run the setup skill:

/embark-claude-index:setup

This will guide you through:

  • Installing dependencies
  • Detecting your .uproject file and project structure
  • Configuring workspaces and project paths
  • Building and starting Docker containers
  • Starting the file watcher

Alternatively, run npm run setup to open the web-based setup GUI at http://localhost:3846.

Prerequisites

  • Node.js 20.18+ (22+ recommended) — for the watcher and MCP bridge
  • Docker Desktop with WSL2 backend — the indexing service runs in Docker containers

Architecture

┌─────────────────┐     POST /internal/ingest     ┌──────────────────┐
│  File Watcher    │ ──────────────────────────── │  Indexing Service │
│  (Windows)       │                               │  (Docker)        │
│  chokidar watch  │                               │  Express + SQLite │
└─────────────────┘                               │  In-memory index  │
                                                   │  Zoekt            │
                                                   └────────┬─────────┘
                                                            │ HTTP API
                                                   ┌────────┴─────────┐
                                                   │   MCP Bridge     │
                                                   │  (stdio ↔ HTTP)  │
                                                   └──────────────────┘
                                                            │
                                                   Claude Code reads
                                                   tools via MCP

Each workspace runs as its own Docker container with a dedicated port, SQLite database, and Zoekt index.

  • Setup GUI (http://localhost:3846): Web UI for managing workspaces, configuring projects, and monitoring service health.
  • File Watcher (src/watcher/watcher-client.js): Watches project directories for file changes, parses source files, and sends them to the service via HTTP. Use --workspace <name> to target a specific workspace.
  • Indexing Service (src/service/index.js): Runs inside Docker. Stores data in SQLite, loads everything into memory for fast queries. Integrates with Zoekt for full-text search.
  • MCP Bridge (src/bridge/mcp-bridge.js): Translates MCP tool calls from Claude Code into HTTP API calls, routing to the correct workspace container.

MCP Tools

| Tool | Description | |------|-------------| | unreal_find_type | Find classes, structs, enums, delegates by name | | unreal_find_children | Find all classes inheriting from a parent | | unreal_find_member | Find functions, properties, enum values by name | | unreal_explain_type | Get comprehensive type info (definition + members + children) | | unreal_find_file | Find source files by filename | | unreal_find_asset | Search 400K+ Unreal assets by name | | unreal_browse_module | List types and files in a module/directory | | unreal_list_modules | Discover code organization and module tree | | unreal_grep | Full-text search across indexed source code | | unreal_refresh_index | Rebuild the index on demand | | unreal_batch | Execute multiple queries in a single call |

Configuration

Configuration is managed through the setup GUI (npm run setup or http://localhost:3846):

  • workspaces.json — Defines workspaces (name, port, shared settings). See workspaces.example.json.
  • workspace-configs/<name>.json — Per-workspace config with project paths and service settings.
  • docker-compose.yml — Generated from workspaces.json, one service per workspace.

All three files are gitignored since they contain local paths. Run npm run setup to generate them.

Supported project languages: angelscript, cpp, content (assets), config (ini files).

Troubleshooting

Tools say "Unreal Index Service is not running"

  • Start containers: docker compose up -d
  • Check health: curl http://127.0.0.1:3847/health
  • View logs: docker compose logs -f <workspace-name>

No results returned

  • Check that the file watcher is running and has completed initial indexing
  • Open the setup GUI (http://localhost:3846) to verify project paths
  • Try removing the project filter — it may not match your project names

Setup GUI doesn't detect my project

  • Run npm run setup and add projects manually via the web UI
  • Or copy workspaces.example.json to workspaces.json and edit by hand

Related plugins

Browse all →