An Applied Energistics 2 add-on

Your ME network.In your browser.

Browse storage, request crafts, and follow every job from the web. Your AE2 network, without opening Minecraft.

Built-in web terminal PROJECT PREVIEW
Minecraft
server
AE2 Web
Integration
Your web
browser

Screenshot unavailable. Open the project gallery.

From the project gallery.

Server-side only.No client install needed.
1.21.1NeoForge
1.20.1Forge
1.12.2Forge / AE2 UEL
1.7.10Forge / GTNH

A little less alt-tabbing.

Keep an eye on your storage and crafting, even when Minecraft isn't the window in front of you.

Your storage, at a glance.

Browse, sort, and filter your network's contents. Find the materials you need without opening an in-game terminal.

Keep your crafts moving.

Request items, choose a crafting CPU, follow progress, and cancel jobs. Manage the queue from your browser.

Shared server. Separate networks.

Switch between networks. In public mode, players get their own accounts and access to the networks they're allowed to use.

A ping when it's ready.

Send crafting updates to Discord through a webhook. Let the notification come to you.

Available with public mode disabled.

For the things you'll build

Your network is
an API, too.

Build your own dashboard or integration on the HTTP API that powers the built-in terminal.

API documentation
JavaScript / authenticated request
GET/api/grids
// On your mod-hosted page; use a login token
const token = 'YOUR_SESSION_TOKEN';
const response = await fetch('/api/grids', {
  headers: { Authorization: `Bearer ${token}` }
});

if (!response.ok) {
  throw new Error(`HTTP ${response.status}`);
}

const { data: networks } = await response.json();
Example only. Requests go to your mod's server, not this website.

Give your ME network a web address.

Pick your platform, then choose the file for your Minecraft version and loader. Install it on your server alongside AE2.

No additional items or blocks. Just the connection.

GitHub releases (opens in a new tab)

From server
to browser.

Install

Put the matching JAR in your server's mods folder. Start the server to generate the configuration.

Configure

Set the admin password, port, and public mode. Use HTTPS through a reverse proxy for internet access.

Open

Visit your server's address in a browser and log in. The default web port is 2324.

Before you connect.

The web panel runs on your Minecraft server. This website is the home of the project.

Installation guide (opens in a new tab)
Do players need to install the mod?
On multiplayer, only the server needs AE2 Web Integration. Players use a web browser. Your server still needs a compatible Applied Energistics 2 installation.
Does the Minecraft server need to stay running?
Yes. The mod starts its HTTP server with Minecraft and serves the web panel and API from there. The landing page cannot connect to a stopped server.
Can each player access their own network?
Yes. Public mode supports individual accounts, with registration confirmed in game. Network access is based on Wireless Access Point ownership on newer versions, or Security Terminal permissions on older versions. See the network setup guide (opens in a new tab).
Is the API documentation the web terminal?
No. API documentation explains how to use the endpoints exposed by the mod. To open your terminal, visit your own Minecraft server's configured web address instead.