mcp-twikit vs Scrapling
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-twikit by adhikasp | Scrapling by D4Vinci | |
|---|---|---|
| Stars | ★ 233 | ★ 50,346 |
| 30天用量 | — | — |
| 综合分 | 43 | 62 |
| 官方 | — | — |
| 分类 | 沟通协作social-media网页抓取 | 网页抓取AI / LLM 工具开发者工具 |
| 实现语言 | Python | Python |
| 最近提交 | 14 个月前 | 本月 |
mcp-twikit · 概述
一个MCP服务器,提供Twitter搜索、时间线获取和情感分析功能。
Scrapling · 概述
自适应网页抓取框架,具备解析能力和反爬虫功能,现已集成为 MCP 服务器。
mcp-twikit · 使用场景
- 品牌和客户服务的社交媒体情感分析
- 监控个人Twitter时间线获取最新更新
- 比较多个Twitter账户的公众情感倾向
Scrapling · 使用场景
- 从具有动态布局变化的网站提取结构化数据
- 自动代理轮换和反爬虫绕过的大规模网页爬取
- 将网页抓取功能集成到 AI 工作流中
mcp-twikit · 安装
安装
通过Smithery安装
通过[Smithery](https://smithery.ai/server/mcp-twikit)自动安装Twitter搜索功能用于Claude桌面版:
npx -y @smithery/cli install mcp-twikit --client claude手动安装
添加到Claude桌面版配置:
{
"mcpServer": {
"command": "uvx",
"args": ["--from", "git+https://github.com/adhikasp/mcp-twikit", "mcp-twikit"],
"env": {
"TWITTER_USERNAME": "@example",
"TWITTER_EMAIL": "me@example.com",
"TWITTER_PASSWORD": "secret",
}
}
}Scrapling · 安装
安装 Scrapling MCP 服务器
- 通过 pip 安装 Scrapling 包:
``bash pip install scrapling ``
- 配置您的 MCP 客户端以使用 Scrapling 服务器。对于 Claude Desktop,添加到
claude_desktop_config.json:
``json { "mcpServers": { "scrapling": { "command": "python", "args": ["-m", "scrapling", "mcp"] } } } ``