MCP Catalogs
Home

filesystem vs AwesomeSalesforceSkills

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

filesystem
by modelcontextprotocol
AwesomeSalesforceSkills
by PranavNagrecha
Stars★ 85,748★ 20
30d uses
Score7743
Official
Categories
File SystemDeveloper ToolsProductivity
AI / LLM ToolsDeveloper ToolsKnowledge Graph
LanguageTypeScriptPython
Last committhis monththis month

filesystem · Summary

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

AwesomeSalesforceSkills · Summary

Comprehensive Salesforce knowledge layer with 38-tool MCP server providing live-org metadata, skills, and agents for AI assistants.

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

AwesomeSalesforceSkills · Use cases

  • AI-powered Salesforce development with real-time org validation
  • Learning Salesforce best practices through structured skill guides
  • Automating Salesforce administration tasks with AI assistants

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.

AwesomeSalesforceSkills · Install

# 1. Clone the repository
git clone https://github.com/PranavNagrecha/AwesomeSalesforceSkills.git
cd AwesomeSalesforceSkills

# 2. Install dependencies
python3 -m pip install -r requirements.txt

# 3. Install MCP server
pip install sfskills-mcp

# For Claude Desktop:
# Add to claude_desktop_config.json:
{
  "mcpServers": {
    "sfskills": {
      "command": "sfskills-mcp",
      "args": []
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.