fetch vs plasmate
并排对比,帮你在这两个 MCP server 之间做选择。
fetch by modelcontextprotocol | plasmate by plasmate-labs | |
|---|---|---|
| Stars | ★ 85,748 | ★ 21 |
| 30天用量 | — | — |
| 综合分 | 76 | 45 |
| 官方 | ✓ | — |
| 分类 | 网页抓取AI / LLM 工具效率工具 | 浏览器自动化网页抓取AI / LLM 工具 |
| 实现语言 | TypeScript | HTML |
| 最近提交 | 本月 | 本月 |
fetch · 概述
一个MCP服务器,抓取网页内容并将HTML转换为Markdown,让大模型能读取网页信息。
plasmate · 概述
Plasmate 是一个专为智能体设计的浏览器引擎,通过 MCP 将 HTML 转换为紧凑的语义对象模型 (SOM)。
fetch · 使用场景
- 大模型阅读新闻文章和博客
- 网页内容分析
- 从公共网站检索信息
- 分块读取大型网页文档
plasmate · 使用场景
- AI 智能体的网页内容提取和摘要
- 通过稳定的元素标识符进行交互式网页自动化
- 为对标记敏感的 LLM 应用程序提供高效的浏览器渲染
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"]
}
}
}plasmate · 安装
通过包管理器安装:
cargo install plasmate # Rust
npm install -g plasmate # Node.js
pip install plasmate # Python对于 Claude Desktop 集成,添加到您的配置文件:
{
"mcpServers": {
"plasmate": {
"command": "plasmate",
"args": ["mcp"]
}
}
}