MCP-Salesforce

MCP Salesforce connector

GitHub Stars

136

User Rating

Not Rated

Favorites

0

Views

24

Forks

46

Issues

6

Installation
Difficulty
Beginner
Estimated Time
5-10 minutes

Installation

Installation

Prerequisites

Please specify required software and versions:
Python: 3.7 or higher
Salesforce SDK: Latest version

Installation Steps

1. Clone Repository

bash
git clone https://github.com/smn2gnt/MCP-Salesforce
cd MCP-Salesforce

2. Install Dependencies

bash
pip install -r requirements.txt

3. Configure Claude Desktop

Edit claude_desktop_config.json to add the MCP server:
json
{
  "mcpServers": {
    "salesforce": {
      "command": "uvx",
      "args": [
        "--from",
        "mcp-salesforce-connector",
        "salesforce"
      ],
      "env": {
        "SALESFORCE_ACCESS_TOKEN": "SALESFORCE_ACCESS_TOKEN",
        "SALESFORCE_INSTANCE_URL": "SALESFORCE_INSTANCE_URL"
      }
    }
  }
}

4. Start Server

bash
uvicorn main:app --reload

Troubleshooting

Common Issues

Issue: Server won't start Solution: Check Python version and reinstall dependencies. Issue: Not recognized by Claude Desktop Solution: Verify configuration file path and syntax.

Additional Resources