Installation
Let's get OpenForge MCP set up. The process is simple:
- Install Node.js
- Run one command in a terminal
That's it. Let's walk through each step.
Step 1: Install Node.js
What is Node.js?
Node.js is a piece of software that OpenForge MCP needs in order to run. It does not have a visible window -- think of it as the foundation that supports OpenForge MCP behind the scenes.
You only need to install it once and then you can forget about it.
Installation steps
- Windows
- Mac
- Open https://nodejs.org in your browser
- You will see two large download buttons on the front page. Click the one on the left labeled "LTS" (this is the recommended, stable version)
- Double-click the downloaded file to open it
- The installer will launch -- just keep clicking "Next". The default settings are fine
- Click "Install" at the end and wait for it to finish
- Open https://nodejs.org in your browser
- You will see two large download buttons on the front page. Click the one on the left labeled "LTS" (this is the recommended, stable version)
- Double-click the downloaded
.pkgfile to open it - The installer will launch -- just keep clicking "Continue". The default settings are fine
- Click "Install" at the end and wait for it to finish
After the installation finishes, restarting your computer is a good idea to make sure everything takes effect.
Verify the installation
Open a terminal (instructions just below) and run this command:
node --version
If you see a version number like v20.xx.x or v22.xx.x, the installation was successful.
Step 2: Open a terminal
A "terminal" is a window where you give your computer text-based instructions. It might look a bit intimidating, but all you need to do here is copy and paste a single line, so don't worry.
- Windows
- Mac
- Press the Windows key on your keyboard (or click the Start button at the bottom-left of the screen)
- Type "terminal"
- Click on "Windows Terminal" or "Command Prompt" when it appears in the search results
On Windows 11 you will find "Windows Terminal"; on Windows 10 you will find "Command Prompt." Either one works.
- Press Command + Space on your keyboard (this opens Spotlight Search)
- Type "terminal" and press Enter
- A dark window (the terminal) will open
Step 3: Run the setup command
With the terminal open, copy and paste the following command and press Enter:
npx openforge-mcp setup
This command tells your computer to "automatically configure OpenForge MCP." npx is a tool that comes with Node.js -- it downloads and runs programs from the internet.
What happens when I run it?
You will see output like this:
OpenForge MCP Setup
========================
[1/3] Downloading required files... done
[2/3] Creating configuration files... done
[3/3] Testing connection... done
Setup complete!
Next step: Install the plugin for your app (Unity / Blender / Godot).
If you see this, the setup is done.
If you are asked "OK to proceed?" the first time you run the command, type y and press Enter. It is simply asking for your permission to run the program.
Troubleshooting
"node is not recognized" or "node: command not found"
Node.js may not be installed yet, or you may not have reopened the terminal after installing it.
- Confirm that Node.js is installed
- Close the terminal and open a new one
- If that doesn't help, restart your computer
"permission denied" or "access denied"
You may need administrator privileges.
- Windows
- Mac
When you search for "terminal" in the Start menu, right-click the result and select "Run as administrator."
Prefix the command with sudo:
sudo npx openforge-mcp setup
When prompted for a password, enter your Mac login password (nothing will appear on screen as you type, but it is being entered).
The download stalls midway
Check your internet connection. If your Wi-Fi is unstable, wait a moment and then run the same command again.
Still stuck?
Search the GitHub Issues page to see if anyone else has encountered the same problem. If you can't find a match, feel free to open a new issue.
Once the setup is complete, the next step is to install the plugin for your app:
- Using Unity? --> Unity Plugin
- Using Blender? --> Blender Add-on
- Using Godot? --> Godot Plugin