MCP Catalogs
Home

memory vs ebay-mcp

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

memory
by modelcontextprotocol
ebay-mcp
by YosefHayim
Stars★ 85,748★ 63
30d uses
Score7748
Official
Categories
Knowledge GraphAI / LLM ToolsProductivity
E-commerceDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis monththis month

memory · Summary

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

ebay-mcp · Summary

eBay MCP Server provides AI assistants with access to 325 eBay API tools for inventory, orders, marketing, and analytics.

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

ebay-mcp · Use cases

  • AI assistants managing eBay inventory listings and stock levels
  • Automated order processing and fulfillment workflows
  • Marketing campaign creation and performance analytics

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"]
    }
  }
}

ebay-mcp · Install

Install eBay MCP Server

**1. Get eBay Credentials**

  • Create a free [eBay Developer Account](https://developer.ebay.com/)
  • Generate application keys in the [Developer Portal](https://developer.ebay.com/my/keys)

**2. Install**

npm install -g ebay-mcp

**3. Setup Configuration**

npm run setup

**4. Configure Claude Desktop** Add to claude_desktop_config.json:

{
  "mcpServers": {
    "ebay": {
      "command": "ebay-mcp",
      "args": []
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.