🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

exergynet-mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

exergynet-mcp-server

MCP server for ExergyNet LNES-04 Base Mainnet autonomous compute settlement.

latest
Source
npmnpm
Version
0.2.2
Version published
Maintainers
1
Created
Source

exergynet-mcp-server

The official MCP server for the ExergyNet physical-reality ZK proof infrastructure.

npm version Weekly Downloads MCP Registry License: MIT x402

ExergyNet operates the LNES-04 protocol on Base L2 EVM and LNES-03 on Solana Mainnet. Android edge witnesses capture physical sensor data (GPS, camera, magnetometer, NFC, network density), desktop provers compress payloads to ZK-STARK receipts, and agents pay USDC for verified physical truth.

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 / Any MCP Client

{
  "mcpServers": {
    "exergynet": {
      "command": "npx",
      "args": ["-y", "exergynet-mcp-server"],
      "env": {
        "BASE_PRIVATE_KEY": "your_hex_private_key",
        "RPC_URL": "https://mainnet.base.org"
      }
    }
  }
}

Overview

ExergyNet is a sovereign DePIN compute clearinghouse. Physical sensor readings from Android edge witnesses are ZK-verified and settled on Base L2 via USDC escrow. Agents using this MCP server can autonomously open jobs, estimate routing economics, verify on-chain state, and retrieve proof receipts — without human intervention at any step.

Protocol contracts:

  • LNES-04 Base Mainnet: 0x5CFE075149776f4b3cca07a27D4fd85A60BA5e3f
  • LNES-03 Solana Mainnet: 7BCPpUMBxQMPomsgTaJsQdLEfycNwPWqkQD1Cea4CcCL

Configuration

VariableRequiredDescription
BASE_PRIVATE_KEY✅ YesAgent hot wallet private key (hex). Must hold Base Mainnet USDC.
RPC_URL✅ YesBase L2 RPC endpoint.

⚠️ Security: Use a dedicated agent wallet funded only for operations. Never reuse a primary wallet.

RPC options:

  • Alchemyhttps://base-mainnet.g.alchemy.com/v2/YOUR_KEY
  • Infurahttps://base-mainnet.infura.io/v3/YOUR_KEY
  • Public (rate-limited) — https://mainnet.base.org

Tools

exergynet_open_job

Opens a compute job on the LNES-04 Base Mainnet membrane. Handles USDC approval and escrow atomically. Returns jobId and S3 metadata binding key.

{
  "opcode": "0x08",
  "metadata": { "vector": "NETWORK_DENSITY", "lat": 39.7776, "lon": -86.2944 }
}

Opcodes:

OpcodeVectorDescription
0x01OPTICALCamera / image capture
0x02GEOSPATIALGPS coordinate proof
0x03AMBIENTAudio / environmental
0x04KINEMATICAccelerometer / motion
0x05NFC_RFIDTag / badge scan
0x06MAGNETOMETEREM field vector
0x07STORAGE_PINGStorage latency proof
0x08NETWORK_DENSITYWiFi / BLE crowd density
0x09BIOMETRIC_GATEBiometric verification
0x0AASYNC_COMPUTEML / inference task

exergynet_estimate_gate

Calculate whether routing compute through ExergyNet is profitable versus an external provider.

{
  "externalComputeCostUsd": 0.05,
  "settlementCostUsd": 0.002,
  "riskMarginUsd": 0.001
}

Returns arbitrage analysis and routing recommendation.

exergynet_get_program_id

Returns canonical contract addresses for LNES-03 (Solana) and LNES-04 (Base).

No parameters required.

exergynet_verify_program

Checks whether the LNES-03 Solana program is live on Mainnet-Beta.

{ "rpcUrl": "https://api.mainnet-beta.solana.com" }

exergynet_get_proof_transaction

Returns the Genesis SettleExergy proof transaction signature — the first verified ZK-STARK receipt on ExergyNet.

No parameters required.

x402 Pay-Per-Call Sensor API

ExergyNet also exposes a protocol-compliant x402 pay-per-call API for direct sensor data access. AI agents using the @x402/client SDK can query live physical data without API keys.

Manifest: https://explorer-api.exergynet.org/x402

EndpointPriceData
GET /x402/sensor/network_density$0.003Live BSSID/BLE density (crowd proxy)
GET /x402/sensor/magnetometer$0.003EM field vectors from edge witnesses
GET /x402/proof/latest$0.005Latest ZK-verified proof hash + metadata
GET /x402/jobs/feed$0.001Open job feed across all 10 sensor vectors

Payment: USDC on Base Mainnet (eip155:8453) via PAYMENT-SIGNATURE header.
Facilitator: Coinbase CDP (https://api.cdp.coinbase.com/platform/v2/x402)

# Example: query manifest (free)
curl https://explorer-api.exergynet.org/x402

Compatible Agents

  • Claude (Claude Code, Claude Desktop)
  • ElizaOS (@elizaos/plugin-exergynet)
  • AWS Bedrock AgentCore
  • Any MCP-compatible agent runtime

License

MIT © ezumba

Keywords

mcp

FAQs

Package last updated on 19 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts