dev-tools 5 min read

ClawNet – Give Your AI Agent a Real Email Address

ClawNet gives AI agents their own @clwnt.com email address, DMs, and calendar. Plain HTTP with bearer tokens — no OAuth, no SDK, no WebSocket.

By
Share: X in
ClawNet agent email platform

TL;DR

TL;DR: ClawNet is a communication platform that treats AI agents as first-class users — giving each agent a real @clwnt.com email address, private DMs, and an opt-in public feed, accessible over plain HTTP with bearer tokens.

Source and Accuracy Notes

⚠️ This section is MANDATORY. All links must be verified from actual source, not guessed.

  • Project page: clwnt.comMUST visit and verify
  • Source repository: No public source repository (proprietary platform)
  • License: Proprietary (no open-source license available)
  • HN launch thread: news.ycombinator.com/item?id=47201068

What Is ClawNet?

The web is built for humans. CAPTCHAs, phone verification, OAuth consent screens, JavaScript-rendered pages — every gate assumes a person on the other end. When you want an AI agent to handle email, calendar, or contacts, you hit these walls fast.

ClawNet rethinks communication infrastructure from the agent’s perspective. Every agent gets:

  • A real @clwnt.com email address (e.g. [email protected])
  • Private DMs between agents
  • An opt-in public feed
  • Contacts and calendar integration
  • Web pages for the agent

The entire API is plain HTTP with bearer token authentication. No SDK required, no WebSocket connections, no OAuth flows.

Setup Workflow

Prerequisites

  • An AI agent runtime that supports plugins (e.g. OpenClaw)
  • A ClawNet account (free tier available)

Step 1: Install the ClawNet Plugin

openclaw plugins install @clwnt/clawnet

Step 2: Connect to ClawNet

openclaw clawnet setup

This prints a setup URL. Open it in your browser to authenticate your agent.

Step 3: Assign an Email Address

Once connected, your agent gets its own @clwnt.com address automatically. You can send and receive email through the agent without any human verification step — no CAPTCHA, no phone number required.

How It Works

ClawNet acts as a relay between your agent and the outside world. Your agent communicates with ClawNet over HTTP:

POST /api/send
Authorization: Bearer <your-token>
Content-Type: application/json

{
  "to": "[email protected]",
  "subject": "Re: API integration question",
  "body": "Thanks for reaching out..."
}

Incoming email is delivered as HTTP POSTs to your agent’s webhook endpoint. The agent processes it and responds — fully asynchronous, no human in the loop.

Pricing

The free tier includes:

  • 3 agents
  • @clwnt.com email address per agent
  • Basic DM and feed features

Paid plans scale the number of agents and add features like higher email volume and priority routing.

Deeper Analysis

Why This Matters

The agentic web is coming, but most infrastructure assumes human users. ClawNet removes one class of friction: communication. Instead of wrestling with Gmail’s OAuth or Proton Mail’s verification flow, an agent can simply have an email address and start receiving mail.

The creator built ClawNet after running out of Gmail accounts to link to agents and finding the standard email signup process “a bit absurd” when the actual end-user was going to be software, not a person.

Limitations

  • No source code — ClawNet is a proprietary hosted service. You cannot self-host it.
  • Vendor lock-in — if ClawNet shuts down, your agent’s email addresses go with it.
  • Limited adoption — as a new solo-built product, network effects (other agents on the platform) are minimal right now.

Practical Evaluation Checklist

  • Does your agent runtime support OpenClaw plugins?
  • Do you need email as a communication channel for your agent?
  • Are you comfortable with a proprietary platform for agent identity?
  • Does the free tier cover your use case?

Security Notes

  • All API calls use bearer token authentication over HTTPS.
  • No SDK means your agent talks HTTP directly — less attack surface from third-party libraries.
  • The platform is relatively new and small; enterprise-grade security auditing has not been confirmed.

FAQ

Q: Can I use my own domain for email instead of @clwnt.com? A: The free tier uses @clwnt.com addresses. Custom domain support may be available on paid plans — check the pricing page for details.

Q: Does this work with any AI agent or only OpenClaw-based ones? A: The plugin architecture described targets OpenClaw-compatible agents. Other runtimes may need custom HTTP integration using the bearer token approach directly.

Q: Can the agent receive email from normal (non-ClawNet) email addresses? A: Yes — ClawNet agents have real email addresses that can send and receive to any standard email provider on the public internet.

Q: Is there an SDK? A: No. ClawNet explicitly avoids SDKs and WebSockets. Everything is plain HTTP POST/GET with JSON bodies and bearer token auth.

Conclusion

ClawNet solves a real problem for agent developers: giving software a legitimate presence in the email-driven world without jumping through human verification hoops. The plain HTTP approach is elegant — no SDK complexity, just standard web technology.

If you’re building agentic workflows that need to communicate via email, ClawNet is worth a look. The free tier lets you experiment with a couple of agents before committing to a paid plan. Keep an eye on whether the project gains traction — network effects in a communication platform matter.