npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

exergynet-mcp-server

v0.2.2

Published

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

Downloads

1,519

Readme

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

| Variable | Required | Description | |---|---|---| | BASE_PRIVATE_KEY | ✅ Yes | Agent hot wallet private key (hex). Must hold Base Mainnet USDC. | | RPC_URL | ✅ Yes | Base 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:

| Opcode | Vector | Description | |--------|--------|-------------| | 0x01 | OPTICAL | Camera / image capture | | 0x02 | GEOSPATIAL | GPS coordinate proof | | 0x03 | AMBIENT | Audio / environmental | | 0x04 | KINEMATIC | Accelerometer / motion | | 0x05 | NFC_RFID | Tag / badge scan | | 0x06 | MAGNETOMETER | EM field vector | | 0x07 | STORAGE_PING | Storage latency proof | | 0x08 | NETWORK_DENSITY | WiFi / BLE crowd density | | 0x09 | BIOMETRIC_GATE | Biometric verification | | 0x0A | ASYNC_COMPUTE | ML / 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

| Endpoint | Price | Data | |----------|-------|------| | GET /x402/sensor/network_density | $0.003 | Live BSSID/BLE density (crowd proxy) | | GET /x402/sensor/magnetometer | $0.003 | EM field vectors from edge witnesses | | GET /x402/proof/latest | $0.005 | Latest ZK-verified proof hash + metadata | | GET /x402/jobs/feed | $0.001 | Open 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

Links


License

MIT © ezumba