AiToEarn: Publish to 14 Platforms, Let the Agent Handle the Rest
AiToEarn is an open-source AI agent that automates content publishing, engagement, creation, and monetization across Douyin, TikTok, YouTube, Instagram, and…

TL;DR
- What it solves: The manual loop of logging into each platform, re-formatting the same post, scheduling separately, then spending an hour liking and replying across every account
- Why it matters: Staying active on 5+ platforms simultaneously once required a team; now it requires one API key
- Best for: Solo creators, OPCs (one-person companies), agencies managing content for multiple brands
- Main differentiator: Four agents in one - Publish, Engage, Create, and a Monetize marketplace where brands pay you CPS/CPE/CPM to post
- Try it when: You’re about to paste the same caption into platform number four and you notice the small part of your brain that used to like making content has quietly switched off
Tuesday. I had one piece of content. A short video, a caption, eight hashtags I’d already researched. The plan was to post it to TikTok, YouTube Shorts, Instagram Reels, Facebook, and Xiaohongshu.
Forty-five minutes later I was still in the browser. Each platform had a different aspect ratio recommendation. TikTok’s draft autosaved at the wrong thumbnail. Instagram wanted a separate cover image. Xiaohongshu wanted the caption reformatted with topics, not hashtags. YouTube needed a description with timestamps I didn’t have.
By the end I had posted to three of the five. The other two would wait until I could face it again.
What AiToEarn Is
AiToEarn is an open-source AI agent platform for content creators. It wraps four workflows - Publish, Engage, Create, and Monetize - into a single Electron desktop app (TypeScript, React) with a web dashboard and an MCP server.
One sentence: AiToEarn automates content distribution across 14+ platforms, handles engagement via LLM, generates content on demand, and connects you to a marketplace where brands pay per sale, engagement, or view.
Supported platforms: Douyin, Xiaohongshu (Rednote), Kuaishou, Bilibili, WeChat Channels, WeChat Official Accounts, TikTok, YouTube, Facebook, Instagram, Threads, X (Twitter), Pinterest, LinkedIn.
The project started as a Chinese-market tool in February 2025, opened to international platforms by September 2025, and added MCP support in March 2026 - meaning it now works as a tool inside Claude Desktop, Cursor, or any MCP-compatible assistant.
The Four Agents
Publish
The baseline. Point it at your content, pick your platforms, set a schedule, and it posts. Calendar view to plan across accounts. No reformatting per platform - the agent adapts the format.
Engage
A browser extension that runs alongside your accounts. It auto-likes, bookmarks, and follows. More importantly, it mines comments for high-conversion signals - “where’s the link?”, “how do I buy this?” - and surfaces them for fast response. For each comment, an LLM generates a context-aware reply. You can review before sending or let it queue automatically.
Create
You describe what you want. The agent calls whichever generation models you have configured - Grok, Veo, Seedance for video; Nano Banana for images - and returns a finished asset. Or batch mode: submit fifty creation prompts, the agent fills the queue in parallel. This is how matrix account operations stay manageable at scale.
Monetize
This is the part that doesn’t exist in similar tools. AiToEarn runs a content marketplace where brands post tasks (promote this product on Xiaohongshu, drive traffic to this link on Douyin) and creators pick them up for payment. Three settlement models:
| Model | Settles by |
|---|---|
| CPS (Cost Per Sale) | Transaction amount you generate |
| CPE (Cost Per Engagement) | Likes, saves, comments on your post |
| CPM (Cost Per Mille) | Views |
The creator doesn’t pitch brands. The tasks come to the dashboard. Post, get paid.
Getting Started
Five ways in - pick the one that fits:
1. Web (zero setup)
- International: aitoearn.ai
- China: aitoearn.cn
2. MCP inside Claude or Cursor
Get an API key from the Settings panel in the web dashboard, then add to claude_desktop_config.json:
{
"mcpServers": {
"aitoearn": {
"type": "http",
"url": "https://aitoearn.ai/api/unified/mcp",
"headers": {
"x-api-key": "your-api-key"
}
}
}
}
Now you can ask Claude to publish, schedule, or generate content directly from a conversation.
3. OpenClaw integration
npx -y @aitoearn/openclaw-plugin-cli
First run prompts for environment and API key. After that, earning tasks appear in the OpenClaw sidebar.
4. Docker (self-hosted)
git clone https://github.com/yikart/AiToEarn.git
cd AiToEarn
docker compose up -d
5. Build from source (Node 20.18.x required)
The project is structured under project/ with three sub-projects: aitoearn-backend, aitoearn-electron, aitoearn-web.
What Gets Harder
The Engage automation operates in grey territory on most platforms. Auto-liking and auto-following at scale violates the ToS of TikTok, Instagram, and others. The tool works - but accounts can get flagged or shadowbanned. Use it with awareness of the risk.
The Monetize marketplace is currently heavier on Chinese platforms (Douyin, Rednote, Kuaishou). International brand tasks exist but the density is lower. If you’re purely a YouTube or Instagram creator, the earning pipeline will feel thin until the international marketplace grows.
Create agent quality depends entirely on which generation models you have configured and their API costs. The tool orchestrates calls to external APIs - it doesn’t bundle inference. Your output is only as good as the model you’re calling.
The Electron app requires Node 20.18.x. Not the latest. The lock is explicit.
The Geometry of It
The insight buried in this project: content work is mostly logistics, not creativity. Reformatting, scheduling, copy-pasting captions, clicking reply seventy times - none of that is the creative part. AiToEarn automates the logistics so the creative part, however small, gets more room.
The Monetize marketplace adds a layer most solo tools ignore: connecting distribution capability directly to income. You don’t build a following and then figure out monetization separately. The tasks are already in the queue.
14,096 stars and 2,375 forks in 15 months for a TypeScript Electron app is a specific kind of signal. The market for tools that solve creator logistics is large and mostly unsolved.
→ yikart/AiToEarn · MIT · TypeScript · aitoearn.ai
Related posts
OpenGame: The Agent That Runs the Game to See If It Works
OpenGame is a CLI agentic framework from CUHK MMLab that scaffolds, builds, and verifies browser games end-to-end from a plain-English prompt.
last30days: The AI Skill That Searches People, Not Editors
An AI agent skill that searches Reddit, X, YouTube, HN and Polymarket for the last 30 days on any topic, scored by what real people actually engaged with.
9Router: Free AI Coding With Auto-Fallback and 40% Token Savings
9Router is a local proxy that routes Claude Code, Cursor, and Cline through 40+ providers with auto-fallback, token compression, and zero-downtime quota…
The Job Search System That Evaluated 740 Offers
Career-ops turns Claude Code into a 14-mode job search agent: structured A-F evaluations, ATS-optimized PDFs, batch processing, and a Go TUI dashboard. MIT.