MCP Catalogs
Home

metmuseum-mcp vs everything

Side-by-side comparison to help you pick between these two MCP servers.

metmuseum-mcp
by mikechao
everything
by modelcontextprotocol
Stars★ 26★ 85,748
30d uses
Score4477
Official
Categories
AI / LLM ToolsKnowledge GraphMedia
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit1 mo agothis month

metmuseum-mcp · Summary

An MCP server providing access to The Metropolitan Museum of Art's collection with search, retrieval and visualization tools.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

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

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

metmuseum-mcp · Install

Installation

Using npx (Recommended)

npx -y metmuseum-mcp

Using 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-mcp

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.