MCP Catalogs
Home

mcp-salesforce vs everything

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

mcp-salesforce
by AiondaDotCom
everything
by modelcontextprotocol
Stars★ 16★ 85,748
30d uses
Score4277
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageJavaScriptTypeScript
Last commit1 mo agothis month

mcp-salesforce · Summary

Complete MCP server for Salesforce integration with Claude Desktop, offering OAuth authentication and universal CRUD operations.

everything · Summary

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

mcp-salesforce · Use cases

  • Automate data management tasks in Salesforce through AI assistants
  • Integrate Salesforce data with Claude Desktop for intelligent insights
  • Perform bulk operations on Salesforce records without manual login

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

mcp-salesforce · Install

Installation

Recommended: NPX Usage

Add to Claude Desktop configuration:

{
  "mcpServers": {
    "salesforce": {
      "command": "npx",
      "args": ["@aiondadotcom/mcp-salesforce"]
    }
  }
}

Development Setup

  1. Clone repository: git clone https://github.com/AiondaDotCom/mcp-salesforce.git
  2. Install dependencies: npm install
  3. Use local path in Claude Desktop configuration

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.