diff --git a/README.md b/README.md
index 7bc7b1089..bc1e2a412 100644
--- a/README.md
+++ b/README.md
@@ -268,6 +268,7 @@ Talk to your picoclaw through Telegram, Discord, DingTalk, LINE, or WeCom
| Channel | Setup |
| ------------ | ---------------------------------- |
+| **HTTP** | Automatic (enabled by default) |
| **Telegram** | Easy (just a token) |
| **Discord** | Easy (bot token + intents) |
| **QQ** | Easy (AppID + AppSecret) |
@@ -275,6 +276,44 @@ Talk to your picoclaw through Telegram, Discord, DingTalk, LINE, or WeCom
| **LINE** | Medium (credentials + webhook URL) |
| **WeCom** | Medium (CorpID + webhook setup) |
+
+HTTP (Default)
+
+The HTTP channel is enabled by default and runs on `http://127.0.0.1:8070`. No configuration needed!
+
+**Access the web interface:**
+
+1. Start the gateway:
+```bash
+picoclaw gateway
+```
+
+2. Open your browser and navigate to `http://127.0.0.1:8070`
+
+**Configuration:**
+
+```json
+{
+ "channels": {
+ "http": {
+ "enabled": true,
+ "host": "127.0.0.1",
+ "port": 8070
+ }
+ }
+}
+```
+
+**Features:**
+
+- Real-time chat interface
+- Markdown support with proper rendering
+- Responsive design for mobile and desktop
+
+The HTTP channel is perfect for testing, local development, or running PicoClaw on a headless server with a web UI.
+
+
+
Telegram (Recommended)