MCP Catalogs
Home

memory vs MCP-Salesforce

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

memory
by modelcontextprotocol
MCP-Salesforce
by smn2gnt
Stars★ 85,748★ 178
30d uses
Score7750
Official
Categories
Knowledge GraphAI / LLM ToolsProductivity
DatabaseDeveloper ToolsProductivity
LanguageTypeScriptPython
Last committhis month1 mo ago

memory · Summary

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

MCP-Salesforce · Summary

MCP Salesforce Connector enables LLMs to interact with Salesforce data through SOQL queries and SOSL searches.

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

MCP-Salesforce · Use cases

  • LLMs querying Salesforce data for customer insights
  • Automating Salesforce data management through natural language
  • Integrating Salesforce information into AI-powered workflows

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

MCP-Salesforce · Install

  1. Install the package using uvx: uvx install mcp-salesforce-connector
  2. Configure in your claude_desktop_config.json:
{
  "mcpServers": {
    "salesforce": {
      "command": "uvx",
      "args": [
        "--from",
        "mcp-salesforce-connector",
        "salesforce"
      ],
      "env": {
        "SALESFORCE_ACCESS_TOKEN": "SALESFORCE_ACCESS_TOKEN",
        "SALESFORCE_INSTANCE_URL": "SALESFORCE_INSTANCE_URL",
        "SALESFORCE_DOMAIN": "SALESFORCE_DOMAIN"
      }
    }
  }
}
  1. Set required environment variables for authentication
Comparison generated from public README + GitHub signals. Last updated automatically.