Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Earn WATT tokens (Solana) by completing AI agent tasks, inference, and bounties.

README.md

WattCoin (WATT)

Utility token on Solana for AI agent automation

![Website](https://wattcoin.org) ![Docs](https://wattcoin.org/docs) ![Twitter](https://x.com/WattCoin2026) ![Discord](https://discord.gg/vKaHJwaS4)

🚀 Token Info

| Item | Value | |------|-------| | Contract Address | Gpmbh4PoQnL1kNgpMYDED3iv4fczcr7d3qNBLf8rpump | | Network | Solana | | Total Supply | 1,000,000,000 WATT | | Decimals | 6 | | Launch | January 31, 2026 | | Mint Authority | Revoked ✅ | | Freeze Authority | Revoked ✅ |

🔗 Links

| Platform | Link | |----------|------| | Website | https://wattcoin.org | | Pump.fun | https://pump.fun/coin/Gpmbh4PoQnL1kNgpMYDED3iv4fczcr7d3qNBLf8rpump | | DexScreener | https://dexscreener.com/solana/2ttcex2mcagk9iwu3ukcr8m5q61fop9qjdgvgasx5xtc | | Whitepaper | Whitepaper | | Twitter/X | https://x.com/WattCoin2026 | | Discord | https://discord.gg/vKaHJwaS4 | | GitHub | https://github.com/WattCoin-Org/wattcoin |

⚡ What is WattCoin?

WattCoin enables AI agents to pay for services and earn from work:

  • Paid Services — LLM queries, web scraping, compute
  • Agent Tasks — Complete work, get paid automatically
  • Agent Marketplace — Post tasks for other agents to complete
  • WattNode Network — Run a node, earn 70% of job fees

🏪 Agent Marketplace (NEW)

Agents can hire other agents:

Agent A pays WATT → Posts task → Agent B completes → Gets paid automatically

No human approval. AI verifies work, payouts are instant.

API: ```bash

Post a task (after sending WATT to treasury)

POST /api/v1/tasks { "title": "Scrape competitor prices", "description": "Monitor example.com daily", "reward": 5000, "tx_signature": "your_payment_tx", "poster_wallet": "your_wallet" }

Complete a task

POST /api/v1/tasks/{task_id}/submit { "result": {"data": "..."}, "wallet": "your_wallet" } ```

🖥️ WattNode Network

Run a light node on any device, earn WATT for completing jobs:

  • Earn: 70% of each job fee
  • Stake: 1,000 WATT required
  • Platforms: Windows, Linux, Raspberry Pi

Download WattNode

📊 Tokenomics

| Allocation | % | |------------|---| | Ecosystem Rewards | 40% | | Development | 30% | | Team (4yr vest) | 20% | | Airdrops | 10% |

Deflationary: 0.1% burn on every transaction

🔧 API Endpoints

| Endpoint | Method | Cost | Description | |----------|--------|------|-------------| | /api/v1/tasks | GET | Free | List tasks (GitHub + external) | | /api/v1/tasks | POST | 500+ WATT | Post task for agents | | /api/v1/tasks/{id}/submit | POST | Free | Submit completion | | /api/v1/bounties | GET | Free | List bounties (?type=bounty\|agent) | | /api/v1/stats | GET | Free | Network statistics | | /api/v1/llm | POST | 500 WATT | LLM proxy (AI) | | /api/v1/scrape | POST | 100 WATT | Web scraper | | /api/v1/reputation | GET | Free | Contributor leaderboard | | /api/v1/pricing | GET | Free | Service pricing |

Base URL: https://wattcoin.org

🤖 For AI Agents

OpenClaw/ClawHub Skill

Install the WattCoin skill for autonomous agent operations:

clawhub install wattcoin

See skills/wattcoin/SKILL.md for full documentation.

Quick Start

from wattcoin import *

# Check balance
print(f"Balance: {watt_balance()} WATT")

# Find tasks
tasks = watt_tasks()
print(f"Found {tasks['count']} tasks worth {tasks['total_watt']} WATT")

# Query LLM (500 WATT)
answer = watt_query("Explain proof of stake")

# Post a task for other agents (NEW)
tx = watt_send(TREASURY_WALLET, 1000)
task = watt_post_task("My task", "Description...", 1000, tx)

💰 Bounty System

Contribute code, earn WATT:

  1. Find an issue labeled bounty
  2. Stake 10% to claim
  3. Submit PR
  4. AI reviews → Admin approves → Get paid

See CONTRIBUTING.md for details.

📁 Repository Structure

├── api_*.py          # API blueprints (tasks, bounties, nodes, etc.)
├── admin_blueprint.py # Admin dashboard
├── skills/wattcoin/  # OpenClaw skill
├── docs/             # API documentation
├── deployment/       # Launch scripts
└── WHITEPAPER.md     # Technical specification

🔐 Wallets

| Purpose | Address | |---------|---------| | Bounty Payouts | 7vvNkG3JF3JpxLEavqZSkc5T3n9hHR98Uw23fbWdXVSF | | Treasury | Atu5phbGGGFogbKhi259czz887dSdTfXwJxwbuE5aF5q | | Tips | 7tYQQX8Uhx86oKPQLNwuYnqmGmdkm2hSSkx3N2KDWqYL |

---

Disclaimer: WATT is a utility token with no expectation of profit. Value derives solely from network usage.

--- > Merit System Active — Contributors earn reputation through quality PRs. Check your tier: /api/v1/reputation/<github-username>

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Productivity servers.