MCP Catalogs
首页

mcp-hosted vs everything

并排对比,帮你在这两个 MCP server 之间做选择。

mcp-hosted
by forcedotcom
everything
by modelcontextprotocol
Stars★ 109★ 85,748
30天用量
综合分4977
官方
分类
开发者工具AI / LLM 工具效率工具
开发者工具AI / LLM 工具其它
实现语言TypeScript
最近提交1 个月前本月

mcp-hosted · 概述

Salesforce 托管的 MCP 服务器使 AI 助手能够通过模型上下文协议安全连接到 Salesforce 资产。

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

mcp-hosted · 使用场景

  • 将 AI 助手连接到 Salesforce 数据和业务逻辑
  • 为 AI 应用程序提供对 Salesforce 系统的安全 API 访问
  • 构建与 Salesforce 工作流集成的自定义 MCP 服务器

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

mcp-hosted · 安装

安装

Salesforce MCP 服务器在 Salesforce 平台中托管和管理。配置方法:

  1. 在您的 Salesforce 组织中导航至 设置
  2. 在 平台工具 部分找到 API 目录
  3. 选择 管理 MCP 服务器
  4. 启用所需服务器并配置身份验证

对于 Claude Desktop,添加到您的 config.json:

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

everything · 安装

NPX(推荐)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Windows 用户请使用 cmd /c

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

全局安装

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
对比内容由 README + GitHub 公开数据自动生成,定期更新。