mcp-twikit vs fetch
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-twikit by adhikasp | fetch by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 233 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 43 | 76 |
| 官方 | — | ✓ |
| 分类 | 沟通协作social-media网页抓取 | 网页抓取AI / LLM 工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 14 个月前 | 本月 |
mcp-twikit · 概述
一个MCP服务器,提供Twitter搜索、时间线获取和情感分析功能。
fetch · 概述
一个MCP服务器,抓取网页内容并将HTML转换为Markdown,让大模型能读取网页信息。
mcp-twikit · 使用场景
- 品牌和客户服务的社交媒体情感分析
- 监控个人Twitter时间线获取最新更新
- 比较多个Twitter账户的公众情感倾向
fetch · 使用场景
- 大模型阅读新闻文章和博客
- 网页内容分析
- 从公共网站检索信息
- 分块读取大型网页文档
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",
}
}
}fetch · 安装
安装
**使用uv(推荐)** 无需特定安装。使用uvx直接运行服务器:
uvx mcp-server-fetch**使用PIP** 通过pip安装:
pip install mcp-server-fetch然后运行:
python -m mcp_server_fetchClaude桌面配置
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}