everything vs MCP-Salesforce
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | MCP-Salesforce by smn2gnt | |
|---|---|---|
| Stars | ★ 85,748 | ★ 178 |
| 30d uses | — | — |
| Score | 77 | 50 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | DatabaseDeveloper ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
MCP-Salesforce · Summary
MCP Salesforce Connector enables LLMs to interact with Salesforce data through SOQL queries and SOSL searches.
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 · Use cases
- LLMs querying Salesforce data for customer insights
- Automating Salesforce data management through natural language
- Integrating Salesforce information into AI-powered workflows
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-everythingMCP-Salesforce · Install
- Install the package using uvx:
uvx install mcp-salesforce-connector - 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"
}
}
}
}- Set required environment variables for authentication