MCP Catalogs
Home

mcp-salesforce vs filesystem

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

mcp-salesforce
by AiondaDotCom
filesystem
by modelcontextprotocol
Stars★ 16★ 85,748
30d uses
Score4277
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
File SystemDeveloper ToolsProductivity
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.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.