MCP Catalogs
Home

metmuseum-mcp vs memory

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

metmuseum-mcp
by mikechao
memory
by modelcontextprotocol
Stars★ 26★ 85,748
30d uses
Score4477
Official
Categories
AI / LLM ToolsKnowledge GraphMedia
Knowledge GraphAI / LLM ToolsProductivity
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.

memory · Summary

An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.

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

memory · Use cases

  • Personalizing AI assistant interactions by remembering user preferences, history, and relationships
  • Building context-aware chat applications that maintain conversation history
  • Creating knowledge bases that persist across AI model sessions

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

memory · Install

Installation

Claude Desktop

Add to your claude_desktop_config.json:

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

VS Code

Use one-click installation buttons or manually configure in .vscode/mcp.json:

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

Docker

{
  "mcpServers": {
    "memory": {
      "command": "docker",
      "args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.