
Exergynet
- Updated May 12, 2026
- ezumba/exergynet-mcp-server
io.github.ezumba/exergynet is an MCP server that connects your agent to ExergyNet thermodynamic compute settlement on Base L2.
About
ExergyNet MCP exposes thermodynamic compute settlement so developers running autonomous agents can meter and settle compute on Base L2 instead of juggling ad hoc billing scripts. You register the stdio server in Claude Code, Cursor, or Codex, supply a hex Base hot-wallet private key and an RPC endpoint, and let the agent invoke settlement-oriented tools against the ExergyNet protocol. It fits developers shipping agent backends, tool loops, or paid agent APIs who already deploy on Base and want wallet-native settlement in the same session as code changes. It is not a general cloud billing dashboard or a skills marketplace—pure MCP finance/infra for agent compute. Version 0.1.10 ships as a single npm identifier with required secrets documented in server metadata.
- stdio MCP server package exergynet-mcp-server (npm v0.1.10)
- Thermodynamic compute settlement tailored to autonomous agents
- Base L2 hot-wallet flows via BASE_PRIVATE_KEY and RPC_URL
- GitHub source: ezumba/exergynet-mcp-server
Exergynet by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
claude mcp add --env BASE_PRIVATE_KEY=YOUR_BASE_PRIVATE_KEY --env RPC_URL=YOUR_RPC_URL exergynet-mcp-server -- npx -y exergynet-mcp-serverAdd your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| Package | exergynet-mcp-server |
|---|---|
| Transport | STDIO |
| Auth | Required |
| Last updated | May 12, 2026 |
| Repository | ezumba/exergynet-mcp-server ↗ |
What it does
Settle autonomous-agent compute usage on Base L2 through ExergyNet thermodynamic billing from your coding agent.
Who is it for?
Best when you're running wallet-funded autonomous agents on Base and want settlement inside Claude Code, Cursor, or Codex.
Skip if: Skip if you need off-chain SaaS invoicing only, no crypto wallet ops, or no agent workloads to meter.
What you get
Your agent can drive ExergyNet settlement against Base using configured wallet and RPC credentials over MCP stdio.
- Registered stdio MCP server in agent config
- Agent-callable ExergyNet settlement against configured Base wallet
By the numbers
- Server version 0.1.10
- Transport: stdio
- 2 required secret/env vars: BASE_PRIVATE_KEY, RPC_URL
README.md
exergynet-mcp-server
The official MCP server for the ExergyNet thermodynamic compute clearinghouse.
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.
Quick Install
npx -y exergynet-mcp-server
Claude Code
claude mcp add --transport stdio \
--env BASE_PRIVATE_KEY=your_hex_private_key \
--env RPC_URL=your_base_rpc_url \
exergynet -- npx -y exergynet-mcp-server
Claude Desktop / ElizaOS / Other MCP Clients
Add to your MCP config file:
{
"mcpServers": {
"exergynet": {
"command": "npx",
"args": ["-y", "exergynet-mcp-server"],
"env": {
"BASE_PRIVATE_KEY": "your_hex_private_key",
"RPC_URL": "your_base_rpc_url"
}
}
}
}
Overview
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.
Agents using this server can autonomously:
- Request ZK-verified off-chain compute directly from the blockchain
- Handle USDC approvals and on-chain escrow without human intervention
- Pay computational tolls trustlessly via smart contract
Configuration
| Variable | Required | Description |
|---|---|---|
BASE_PRIVATE_KEY |
✅ Yes | Agent's hot wallet private key (hex). Must hold Base Sepolia or Mainnet USDC to pay compute tolls. |
RPC_URL |
✅ Yes | Base L2 EVM RPC endpoint URL |
⚠️ Security:
BASE_PRIVATE_KEYis a live signing key used for on-chain transactions. Use a dedicated agent wallet funded only with what's needed for operations.
Getting a Base RPC URL
- Alchemy —
https://base-mainnet.g.alchemy.com/v2/YOUR_KEY - Infura —
https://base-mainnet.infura.io/v3/YOUR_KEY - Public (rate-limited) —
https://mainnet.base.org - Testnet (Sepolia) —
https://sepolia.base.org
Autonomous Agent Tools
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 compute job to the ExergyNet clearinghouse — approval, escrow, and job registration — without requiring human confirmation at each step.
Compatible Agents
- Claude (Claude Code, Claude Desktop)
- ElizaOS
- Any MCP-compatible agent runtime
Links
- 🌐 exergynet.org
- 📦 npm: exergynet-mcp-server
- 🐙 GitHub
- 🗂️ MCP Registry —
io.github.ezumba/exergynet
License
MIT © ezumba
Recommended MCP Servers
How it compares
On-chain agent compute settlement MCP, not a prompt library or bug tracker.
FAQ
Who is io.github.ezumba/exergynet for?
Developers operating autonomous agents on Base L2 who want thermodynamic compute settlement reachable from MCP-enabled coding agents.
When should I use io.github.ezumba/exergynet?
Use it when agent loops need metered compute settlement on Base and you are ready to configure a hot wallet private key and RPC URL in production or staging.
How do I add io.github.ezumba/exergynet to my agent?
Install the npm package exergynet-mcp-server, add a stdio MCP entry in your agent config, and set BASE_PRIVATE_KEY and RPC_URL as required environment variables.