Exergynet MCP Server

ExergyNet thermodynamic compute settlement for autonomous agents.

Local serverstdio

What is the Exergynet MCP server?

ExergyNet thermodynamic compute settlement for autonomous agents. Exposed over MCP by the exergynet mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

What it actually does

ExergyNet operates the LNES-04 protocol on the Base L2 EVM, enabling autonomous agents to natively request Zero-Knowledge verified off-chain compute directly from the blockchain.

ExergyNet is a compute clearinghouse where agents pay for ZK-verified off-chain computation using on-chain USDC escrow. Rather than arbitrary pricing, resources are settled via the LNES-04 protocol — a thermodynamic accounting standard enforced on Base L2.

Its toolset

Everything the assistant can do here goes through one of these:

  • exergynet_open_job — Autonomously handles EVM USDC approvals and escrows the computational toll on-chain. This single tool manages the full lifecycle of submitting a

Adding it to your client

exergynet-mcp-server on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

Configuration

You will need 3 environment variables: BASE_PRIVATE_KEY, RPC_URL, YOUR_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

When to reach for it

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Exergynet's toolset — exergynet_open_job — is a fair guide to whether it matches your workflow. It is maintained by ezumba; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the exergynet mcp server does with a few real requests.

Available tools

ToolWhat it does
exergynet_open_jobAutonomously handles EVM USDC approvals and escrows the computational toll on-chain. This single tool manages the full lifecycle of submitting a compute job to the ExergyNet clearinghouse — approval, escrow, and job regi

How to install the Exergynet MCP server

{
  "mcpServers": {
    "exergynet": {
      "command": "npx",
      "args": ["-y", "exergynet-mcp-server"],
      "env": {
        "BASE_PRIVATE_KEY": "your_hex_private_key",
        "RPC_URL": "your_base_rpc_url"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
BASE_PRIVATE_KEYCredential the server authenticates with.Yes
RPC_URLEndpoint or connection string the server talks to.Yes
YOUR_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Exergynet to exergynet open job.

Frequently asked questions

It connects Exergynet to MCP-compatible AI assistants such as Claude and Cursor, exposing 1 tool (exergynet_open_job) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Exergynet directly.