MCP Catalogs
Home

memory vs gumroad-mcp

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

memory
by modelcontextprotocol
gumroad-mcp
by rmarescu
Stars★ 85,748★ 22
30d uses
Score7737
Official
Categories
Knowledge GraphAI / LLM ToolsProductivity
E-commerceProductivityDeveloper Tools
LanguageTypeScriptTypeScript
Last committhis month13 mo ago

memory · Summary

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

gumroad-mcp · Summary

An MCP server for Gumroad API, enabling AI assistants to manage products, sales, and offer codes.

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

gumroad-mcp · Use cases

  • Digital creators can query monthly sales trends and compare performance across time periods
  • Automate product management tasks like enabling/disabling products through AI commands
  • Manage offer codes by creating, updating, or deleting promotional codes for products

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

gumroad-mcp · Install

Installation

Quickstart

npx gumroad-mcp@latest init

Manual Configuration

For Claude Desktop, add this to your configuration:

{
  "mcpServers": {
    "gumroad": {
      "command": "npx",
      "args": ["-y", "gumroad-mcp@latest"],
      "env": {
        "GUMROAD_ACCESS_TOKEN": "<YOUR_TOKEN>"
      }
    }
  }
}

For self-hosted Gumroad instances, also add GUMROAD_BASE_URL environment variable.

Comparison generated from public README + GitHub signals. Last updated automatically.