MCP Catalogs
Home

mcp-hosted vs everything

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

mcp-hosted
by forcedotcom
everything
by modelcontextprotocol
Stars★ 109★ 85,748
30d uses
Score4977
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScript
Last commit1 mo agothis month

mcp-hosted · Summary

Salesforce's hosted MCP servers enable AI assistants to securely connect to Salesforce assets using the Model Context Protocol.

everything · Summary

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

mcp-hosted · Use cases

  • Connecting AI assistants to Salesforce data and business logic
  • Enabling secure API access to Salesforce systems for AI applications
  • Building custom MCP servers that integrate with Salesforce workflows

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-hosted · Install

Installation

Salesforce MCP servers are hosted and managed within the Salesforce platform. To configure:

  1. Navigate to Setup in your Salesforce org
  2. Find 'API Catalog' in the 'Platform Tools' section
  3. Select 'Manage MCP Servers'
  4. Enable the desired servers and configure authentication

For Claude Desktop, add to your config.json:

{
  "mcpServers": {
    "salesforce": {
      "command": "npx",
      "args": ["@salesforce/mcp-server", "--host", "your-domain.my.salesforce.com"]
    }
  }
}

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.