metmuseum-mcp vs fetch
并排对比,帮你在这两个 MCP server 之间做选择。
metmuseum-mcp by mikechao | fetch by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 26 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 44 | 76 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具知识库 / RAG多媒体 | 网页抓取AI / LLM 工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 1 个月前 | 本月 |
metmuseum-mcp · 概述
一个MCP服务器,提供访问大都会艺术博物馆收藏的搜索、检索和可视化工具。
fetch · 概述
一个MCP服务器,抓取网页内容并将HTML转换为Markdown,让大模型能读取网页信息。
metmuseum-mcp · 使用场景
- 使用自然语言查询进行艺术研究和探索
- 基于博物馆收藏创建视觉内容
- 艺术史学习方面的教育应用
fetch · 使用场景
- 大模型阅读新闻文章和博客
- 网页内容分析
- 从公共网站检索信息
- 分块读取大型网页文档
metmuseum-mcp · 安装
安装
使用npx(推荐)
npx -y metmuseum-mcp使用Claude Desktop
将以下内容添加到您的claude_desktop_config.json文件中:
{
"mcpServers": {
"met-museum": {
"command": "npx",
"args": [
"-y",
"metmuseum-mcp"
]
}
}
}使用LibreChat
将以下内容添加到您的librechat.yaml文件中:
mcpServers:
metmuseum:
command: npx
args:
- -y
- metmuseum-mcpfetch · 安装
安装
**使用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"]
}
}
}