Skip to content

Bwkyd/wexin-read-mcp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Weixin MCP - 微信文章阅读器

一个极简的MCP,让大模型能够阅读微信公众号文章。

核心功能

  • 🎭 浏览器模拟:使用 Playwright 完整模拟浏览器环境
  • 📝 内容提取:自动提取标题、作者、发布时间、正文内容
  • 简洁实现:最少的代码实现核心功能

工作流程

  1. 用户发送URL和需求给大模型
  2. 大模型调用MCP工具
  3. MCP获取文章内容发送给大模型
  4. 大模型根据文章内容输出自然语言

技术栈

  • Python 3.10+
  • fastmcp - MCP框架
  • Playwright - 浏览器自动化
  • BeautifulSoup4 - HTML解析

快速开始

1. 安装依赖

安装Python依赖

pip install -r requirements.txt

2. 配置

{
  "mcpServers": {
    "weixin-reader": {
      "command": "python",
      "args": [
        "C:/Users/你的用户名/Desktop/wx-mcp/wx-mcp-server/src/server.py"
      ]
    }
  }
}

注意: 请将路径替换为你的实际项目路径。

使用示例

在Claude中直接使用:

请帮我总结这篇文章:https://mp.weixin.qq.com/s/nEJhdxGea-KLZA_IGw9R5A

Claude会自动调用read_weixin_article工具获取文章内容并进行分析。 alt text

功能说明

read_weixin_article(url: str)

读取微信公众号文章内容。

参数:

  • url: 微信文章URL,格式: https://mp.weixin.qq.com/s/xxx

返回:

{
  "success": true,
  "title": "文章标题",
  "author": "作者名",
  "publish_time": "2025-11-05",
  "content": "文章正文内容...",
  "error": null
}

注意事项

  • ⚠️ 仅用于个人学习和研究
  • ⚠️ 遵守微信公众平台服务协议
  • ⚠️ 不建议高频爬取(建议间隔 > 2秒)
  • ⚠️ 不用于商业用途

About

能够让大模型阅读微信公众号文章,使用浏览器模拟绕过反爬虫。

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages