Docs / Platform
Platform

Installation

Opacus can be used via the cloud Agentboard or installed locally as a private Control Plane. Choose the installation path that matches your workflow.

Option 1: Cloud (Zero Install)

The fastest way to use Opacus. No local binaries required.

Option 2: Kinetic MCP (Local AI Bridge)

To use Opacus agents inside Claude Desktop, Cursor, or any MCP-compatible IDE.

1

Install Node.js

Ensure you have Node.js 18+ installed on your machine.

2

Install the bridge

npm install -g @opacus/kinetic-mcp
3

Configure IDE

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "opacus": {
      "command": "npx",
      "args": ["-y", "@opacus/kinetic-mcp"],
      "env": { "OPACUS_API_KEY": "your_key_here" }
    }
  }
}

Option 3: Agent Kernel (Private Control Plane)

For developers running local agent fleets or requiring high-privacy execution.

System Requirements

Docker Installation

# Pull the latest image
docker pull opacus/agent-kernel:latest

# Run with your API key
docker run -d -p 3006:3006 \
  -e OPACUS_API_KEY=your_key \
  --name agent-kernel \
  opacus/agent-kernel:latest

Manual (Source) Installation

# Clone the repo
git clone https://github.com/opacus-xyz/opacus-core
cd opacus-core

# Install dependencies
npm install

# Start the kernel
npm run start

SDK Installation

Add Opacus capabilities to your existing TypeScript or Python projects.

LanguageCommand
TypeScriptnpm install opacus-sdk
Pythonpip install opacus-sdk
Rustcargo add opacus-sdk

Verification

After installation, verify your setup is working correctly:

1

Agent Kernel Health Check

Run the following command to verify the kernel is running:

curl http://localhost:3006/health

Expected response: { "status": "ok" }

2

Test API Call

Make a test request with your API key:

curl -H "Authorization: Bearer sk_free_xxxx" \
  http://localhost:3006/v1/free-tier/me

You should receive your user profile JSON response.

3

Verify MCP Bridge (Claude Desktop)

Check your IDE's MCP connection status. In Claude Desktop, open Settings → Developer → MCP to confirm the Opacus server is connected.

4

Check Wallet Status

Verify your execution wallet has sufficient balance on Base or 0G Chain to fund operations.

Common Installation Issues

Port 3006 already in use

If you see "Address already in use" error:

API key not found

Ensure your API key is properly set:

0G network connection failed

If you see 0G network errors:

Previous
← Pricing & Plans