MCP Catalogs
Home

everything vs mcp-server-salesforce

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

everything
by modelcontextprotocol
mcp-server-salesforce
by tsmztech
Stars★ 85,748★ 156
30d uses
Score7750
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis month3 mo ago

everything · Summary

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

mcp-server-salesforce · Summary

MCP server that enables Claude to interact with Salesforce objects, records, metadata, and Apex code.

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-server-salesforce · Use cases

  • Salesforce administrators and developers using Claude to interact with Salesforce data through natural language queries
  • Business analysts exploring Salesforce data and creating custom objects without writing complex SOQL queries
  • Developers managing Apex code and triggers through Claude's interface

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

mcp-server-salesforce · Install

Installation

Global Installation (npm)

npm install -g @tsmztech/mcp-server-salesforce

Claude Desktop Configuration

For Claude Desktop, add to your claude_desktop_config.json:

For Salesforce CLI Authentication:
{
  "mcpServers": {
    "salesforce": {
      "command": "npx",
      "args": ["-y", "@tsmztech/mcp-server-salesforce"],
      "env": {
        "SALESFORCE_CONNECTION_TYPE": "Salesforce_CLI"
      }
    }
  }
}
For Username/Password Authentication:
{
  "mcpServers": {
    "salesforce": {
      "command": "npx",
      "args": ["-y", "@tsmztech/mcp-server-salesforce"],
      "env": {
        "SALESFORCE_CONNECTION_TYPE": "User_Password",
        "SALESFORCE_USERNAME": "your_username",
        "SALESFORCE_PASSWORD": "your_password",
        "SALESFORCE_TOKEN": "your_security_token",
        "SALESFORCE_INSTANCE_URL": "org_url"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.