feat: add Weibo channel via mcp-server-weibo (#107)

Adds WeiboChannel integrating qinyuanpei/mcp-server-weibo (34+ stars,
MIT, 10 tools) via mcporter. Addresses #75.

Files changed (3 files, +57 lines):
- agent_reach/channels/weibo.py — new channel (54 lines)
- agent_reach/channels/__init__.py — register WeiboChannel
- tests/test_channel_contracts.py — add weibo URL sample

Co-authored-by: AICodeLion <AICodeLion@users.noreply.github.com>
This commit is contained in:
AICodeLion
2026-03-08 21:54:35 +08:00
committed by GitHub
parent 3a3d38acce
commit db20c5d5d3
3 changed files with 57 additions and 0 deletions
+2
View File
@@ -20,6 +20,7 @@ from .douyin import DouyinChannel
from .linkedin import LinkedInChannel
from .bosszhipin import BossZhipinChannel
from .wechat import WeChatChannel
from .weibo import WeiboChannel
# Channel registry
@@ -34,6 +35,7 @@ ALL_CHANNELS: List[Channel] = [
LinkedInChannel(),
BossZhipinChannel(),
WeChatChannel(),
WeiboChannel(),
RSSChannel(),
ExaSearchChannel(),
WebChannel(),