metmuseum-mcp vs fetch
Side-by-side comparison to help you pick between these two MCP servers.
metmuseum-mcp by mikechao | fetch by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 26 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 76 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsKnowledge GraphMedia | Web ScrapingAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
metmuseum-mcp · Summary
An MCP server providing access to The Metropolitan Museum of Art's collection with search, retrieval and visualization tools.
fetch · Summary
An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.
metmuseum-mcp · Use cases
- Art research and exploration using natural language queries
- Creating visual content based on museum collections
- Educational applications for art history learning
fetch · Use cases
- LLMs reading news articles and blogs
- Content analysis of web pages
- Retrieving information from public websites
- Chunked reading of large web documents
metmuseum-mcp · Install
Installation
Using npx (Recommended)
npx -y metmuseum-mcpUsing Claude Desktop
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"met-museum": {
"command": "npx",
"args": [
"-y",
"metmuseum-mcp"
]
}
}
}Using LibreChat
Add the following to your librechat.yaml:
mcpServers:
metmuseum:
command: npx
args:
- -y
- metmuseum-mcpfetch · Install
Installation
**Using uv (recommended)** No specific installation needed. Use uvx to run the server directly:
uvx mcp-server-fetch**Using PIP** Install via pip:
pip install mcp-server-fetchThen run as:
python -m mcp_server_fetchClaude Desktop Configuration
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}