From afc8d0e3ee7561a999f96cf35395fe2836b50285 Mon Sep 17 00:00:00 2001 From: Pnant <73925474+Panniantong@users.noreply.github.com> Date: Mon, 23 Mar 2026 17:16:31 +0800 Subject: [PATCH] docs(weibo): add comprehensive usage examples to SKILL.md (#195) - Add 10 mcporter command examples for Weibo channel - Cover: trending, search (users/content/topics), profile, feeds, comments, fans/followers - Note: zero config, no login needed, uses mobile API with auto visitor cookies - Completes documentation for mcp-server-weibo integration Co-authored-by: Panniantong --- agent_reach/skill/SKILL.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/agent_reach/skill/SKILL.md b/agent_reach/skill/SKILL.md index eb1013e..3a4d636 100644 --- a/agent_reach/skill/SKILL.md +++ b/agent_reach/skill/SKILL.md @@ -126,6 +126,42 @@ cd ~/.agent-reach/tools/wechat-article-for-ai && python3 main.py "https://mp.wei > WeChat articles cannot be read with Jina Reader or curl. Must use Camoufox. +## 微博 / Weibo (mcporter) + +```bash +# 热搜榜 +mcporter call 'weibo.get_trendings(limit: 20)' + +# 搜索用户 +mcporter call 'weibo.search_users(keyword: "雷军", limit: 10)' + +# 获取用户资料 +mcporter call 'weibo.get_profile(uid: "1195230310")' + +# 获取用户微博动态 +mcporter call 'weibo.get_feeds(uid: "1195230310", limit: 20)' + +# 获取用户热门微博 +mcporter call 'weibo.get_hot_feeds(uid: "1195230310", limit: 10)' + +# 搜索微博内容 +mcporter call 'weibo.search_content(keyword: "人工智能", limit: 20)' + +# 搜索话题 +mcporter call 'weibo.search_topics(keyword: "AI", limit: 10)' + +# 获取微博评论 +mcporter call 'weibo.get_comments(mid: "5099916367123456", limit: 50)' + +# 获取粉丝列表 +mcporter call 'weibo.get_fans(uid: "1195230310", limit: 20)' + +# 获取关注列表 +mcporter call 'weibo.get_followers(uid: "1195230310", limit: 20)' +``` + +> Zero config. No login needed. Uses mobile API with auto visitor cookies. + ## 小宇宙播客 / Xiaoyuzhou Podcast (groq-whisper + ffmpeg) ```bash