94
15
In review
Synced today
What it does
Automatically converts WeChat Official Account articles into clean Markdown files with locally downloaded images, supporting batch processing and AI tool integration.
Skill profile
Keep exploring
More options in Automation.
Claude Code · Codex · OpenClaw
Python
Updated 3/4/2026
Agent compatibility
Compatibility has not been reviewed for this listing yet. Check the publisher documentation before installing.
Installation
npx skills add https://github.com/bzd6661/wechat-article-for-ai --skill rootReview source code and installation permissions before adding third-party tools to an agent.
wechat-to-md is organized in the Automation category. Compare its source, install method, and compatibility before adding it to your workflow.
Third-party agent tools may access source code, credentials, or browser sessions. Read the source documentation and use the minimum permissions needed.
npx skills add https://github.com/bzd6661/wechat-article-for-ai --skill rootSKILL.md
---
name: wechat-to-md
description: Convert WeChat Official Account (微信公众号) articles to clean Markdown files with locally downloaded images.
---
# WeChat Article to Markdown Converter
## What this tool does
Converts WeChat public account articles into clean Markdown files with:
- YAML frontmatter (title, author, date, source URL)
- Locally downloaded images
- Preserved code blocks with language detection
- Audio/video reference extraction
- Clean formatting (no WeChat UI noise)
## Prerequisites
- Python 3.10+
- Install dependencies: `pip install -r requirements.txt`
- Camoufox browser will be auto-downloaded on first run
## Usage
### CLI (single article)
```bash
python main.py "https://mp.weixin.qq.com/s/ARTICLE_ID"
```
### CLI (batch from file)
```bash
python main.py -f urls.txt -o ./output -v
```
### CLI Options
| Flag | Description |
|------|-------------|
| `-f FILE` | Text file with URLs (one per line) |
| `-o DIR` | Output directory (default: ./output) |
| `-c N` | Image download concurrency (default: 5) |
| `--no-images` | Skip image download, keep remote URLs |
| `--no-headless` | Show browser (for solving CAPTCHAs) |
| `--force` | Overwrite existing output |
| `--no-frontmatter` | Use blockquote metadata instead of YAML |
| `-v` | Verbose/debug logging |
### MCP Server
Run as an MCP server for AI tool integration:
```bash
python mcp_server.py
```
Exposes two tools:
- `convert_article(url, output_dir, download_images, concurrency, use_frontmatter)` — Convert a single article
- `batch_convert(urls, output_dir, download_images, concurrency)` — Convert multiple articles
### MCP Configuration (for claude_desktop_config.json or similar)
```json
{
"mcpServers": {
"wechat-to-md": {
"command": "python",
"args": ["mcp_server.py"],
"cwd": "<path-to-this-project>"
}
}
}
```
## Output Structure
```
output/
<article-title>/
<article-title>.md # Markdown file with YAML frontmatter
images/
img_001.png
img_002.jpg
...
```
## Common Issues
- **CAPTCHA/verification page**: Run with `--no-headless` to manually solve the CAPTCHA in the browser window, then retry.
- **Empty content**: WeChat may rate-limit requests. Wait a few minutes and try again.
- **Image download failures**: Failed images keep their remote URLs in the markdown. Re-run with `--force` to retry.
## Limitations
- Only supports articles from `mp.weixin.qq.com`
- Requires a working internet connection and the ability to run a headless browser
- WeChat may block automated access; Camoufox helps evade detection but is not guaranteed
skill
mattpocock
An AI tool designed to conduct rigorous interview-style sessions to refine plans or designs.