CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Exergynet

ezumba/exergynet-mcp-server
authSTDIOregistry active
Summary

This connects Claude or any MCP agent to ExergyNet's thermodynamic compute clearinghouse running on Base L2. It exposes a single tool, exergynet_open_job, that autonomously handles the full workflow: USDC approval, on-chain escrow, and ZK-verified compute job submission via the LNES-04 protocol. You'd reach for this if you're building agents that need to pay for off-chain computation trustlessly using smart contract escrow instead of traditional API billing. Requires a funded Base wallet private key and RPC endpoint. The agent handles all transaction signing without human intervention, so treat the configured wallet as a hot key with limited funds.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

exergynet-mcp-server

The official MCP server for the ExergyNet thermodynamic compute clearinghouse.

npm version MCP Registry License: MIT

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

VariableRequiredDescription
BASE_PRIVATE_KEY✅ YesAgent's hot wallet private key (hex). Must hold Base Sepolia or Mainnet USDC to pay compute tolls.
RPC_URL✅ YesBase L2 EVM RPC endpoint URL

⚠️ Security: BASE_PRIVATE_KEY is 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

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

BASE_PRIVATE_KEY*secret

Agent's Base L2 Hot Wallet Private Key (Hex)

RPC_URL*

Base L2 RPC Endpoint URL

Registryactive
Packageexergynet-mcp-server
TransportSTDIO
AuthRequired
UpdatedMay 7, 2026
View on GitHub