/ 디렉터리 / 플레이그라운드 / wechat-article-publisher-skill
● 커뮤니티 iamzifei ⚡ 바로 사용

wechat-article-publisher-skill

제작: iamzifei · iamzifei/wechat-article-publisher-skill

Publishes Markdown or HTML articles to your WeChat Official Account as drafts via a third-party relay API — no browser automation.

Automates publishing to 微信公众号 drafts. Uses an API key from wx.limyai.com (a third-party relay you authorize against your WeChat account) rather than wrangling cookies. Parses Markdown/HTML, auto-uploads images, saves as a draft for you to preview before hitting publish in the official backend.

왜 쓰나요

핵심 기능

라이브 데모

실제 사용 모습

wechat-article-publisher-skill.replay ▶ 준비됨
0/0

설치

클라이언트 선택

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "wechat-article-publisher-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/iamzifei/wechat-article-publisher-skill",
        "~/.claude/skills/wechat-article-publisher-skill"
      ],
      "_inferred": true
    }
  }
}

Claude Desktop → Settings → Developer → Edit Config 열기. 저장 후 앱 재시작.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "wechat-article-publisher-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/iamzifei/wechat-article-publisher-skill",
        "~/.claude/skills/wechat-article-publisher-skill"
      ],
      "_inferred": true
    }
  }
}

Cursor는 Claude Desktop과 동일한 mcpServers 스키마 사용. 프로젝트 설정이 전역보다 우선.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "wechat-article-publisher-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/iamzifei/wechat-article-publisher-skill",
        "~/.claude/skills/wechat-article-publisher-skill"
      ],
      "_inferred": true
    }
  }
}

Cline 사이드바의 MCP Servers 아이콘 클릭 후 "Edit Configuration" 선택.

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "wechat-article-publisher-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/iamzifei/wechat-article-publisher-skill",
        "~/.claude/skills/wechat-article-publisher-skill"
      ],
      "_inferred": true
    }
  }
}

Claude Desktop과 같은 형식. Windsurf 재시작 후 적용.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "wechat-article-publisher-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/iamzifei/wechat-article-publisher-skill",
        "~/.claude/skills/wechat-article-publisher-skill"
      ]
    }
  ]
}

Continue는 맵이 아닌 서버 오브젝트 배열 사용.

~/.config/zed/settings.json
{
  "context_servers": {
    "wechat-article-publisher-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/iamzifei/wechat-article-publisher-skill",
          "~/.claude/skills/wechat-article-publisher-skill"
        ]
      }
    }
  }
}

context_servers에 추가. 저장 시 Zed가 핫 리로드.

claude mcp add wechat-article-publisher-skill -- git clone https://github.com/iamzifei/wechat-article-publisher-skill ~/.claude/skills/wechat-article-publisher-skill

한 줄 명령. claude mcp list로 확인, claude mcp remove로 제거.

사용 사례

실전 활용법: wechat-article-publisher-skill

Publish a Markdown article to WeChat as a draft

👤 Bloggers who write in Markdown and also want to post to 公众号 ⏱ ~10 min beginner

언제 쓸까: You've written a post and want it as a WeChat draft without manual formatting.

사전 조건
  • wx.limyai.com API key + authorized WeChat account — Sign up on wx.limyai.com, authorize via QR, export the WECHAT_API_KEY
  • Skill installed — git clone https://github.com/iamzifei/wechat-article-publisher-skill ~/.claude/skills/wechat-article-publisher-skill
흐름
  1. Set the API key and pick the account
    export WECHAT_API_KEY=... then ask Claude: 'publish my post.md to WeChat as a draft'.✓ 복사됨
    → Claude lists authorized accounts, you pick one
  2. Review the draft in the WeChat backend
    The skill confirms draft saved — open mp.weixin.qq.com and verify formatting.✓ 복사됨
    → Draft appears with images in place

결과: A polished draft you only need to review and click publish on.

함정
  • Markdown tables render poorly — Pre-convert tables to image or use simpler layouts — WeChat's renderer is limited
  • Images on external CDNs get blocked — Skill auto-uploads local images; be explicit about paths
함께 쓰기: filesystem · superseo-skill

Repurpose a blog post as a WeChat draft with formatted images

👤 Content teams reaching Chinese audiences ⏱ ~30 min beginner

언제 쓸까: You have an English blog post and want a Chinese WeChat version.

흐름
  1. Translate + adapt first
    Translate post.md to Chinese, adapt examples for WeChat audience.✓ 복사됨
    → Chinese post.md
  2. Publish as draft
    Now use wechat-article-publisher-skill to save it as a draft.✓ 복사됨
    → Draft saved, preview URL returned

결과: Localized WeChat draft ready to schedule.

조합

다른 MCP와 조합해 10배 효율

wechat-article-publisher-skill + filesystem

Read the post.md + images from a folder and publish in one step

Take posts/2025-01-rag.md and publish to WeChat — auto-find hero image.✓ 복사됨
wechat-article-publisher-skill + superseo-skill

Optimize title + hook before posting

Run superseo featured-snippet-optimizer on the intro first, then publish.✓ 복사됨

도구

이 MCP가 노출하는 것

도구입력언제 호출비용
validate_key WECHAT_API_KEY First run each session 1 API call
upload_image local image path Per image in the article 1 API call per image
save_draft title, body (md|html), thumb_media_id, account_id Final step 1 API call

비용 및 제한

운영 비용

API 쿼터
Depends on wx.limyai.com plan — typically free tier covers a handful of posts/day
호출당 토큰
Small — skill drives an HTTP flow
금액
Free skill; relay API has its own pricing
Batch image uploads in one run to avoid repeated rate hits

보안

권한, 시크릿, 파급범위

최소 스코프: Draft write on your authorized WeChat Official Account
자격 증명 저장: WECHAT_API_KEY in env var. Never paste into chat logs.
데이터 외부 송신: Content + images go through wx.limyai.com -> WeChat. Trust is transitive on the relay.
절대 부여 금지: Publish (the skill is draft-only by design)

문제 해결

자주 발생하는 오류와 해결

401 Unauthorized

WECHAT_API_KEY expired or not set. Re-issue at wx.limyai.com.

확인: curl -H 'Authorization: Bearer $WECHAT_API_KEY' https://wx.limyai.com/health
Images not uploading

Check local paths are absolute and the process has read access

확인: ls -l path/to/image
Formatting breaks in WeChat preview

Simplify Markdown (no nested lists, limit inline HTML) — WeChat's renderer is strict

대안

wechat-article-publisher-skill 다른 것과 비교

대안언제 쓰나단점/장점
Manual copy-paste in mp.weixin.qq.comOccasional posts, no automation needTedious, inconsistent formatting

더 보기

리소스

📖 GitHub에서 공식 README 읽기

🐙 열린 이슈 보기

🔍 400+ MCP 서버 및 Skills 전체 보기