← Back to Plugins
MCP Server MCP

Salesforce

github By github 👁 1 views ▲ 0 votes

MCP server for Salesforce CRM — Accounts, Contacts, Opportunities, Leads, Cases.

Homepage Verified source GitHub

Install

oci:ghcr.io/wyre-technology/salesforce-mcp:v1.0.3

Configuration Example

{
  "remotes": [],
  "packages": [
    {
      "registryType": "oci",
      "identifier": "ghcr.io/wyre-technology/salesforce-mcp:v1.0.3",
      "transport": {
        "type": "stdio"
      },
      "environmentVariables": [
        {
          "description": "Credential source: 'env' reads vars locally, 'gateway' expects header injection from the WYRE MCP Gateway. Set to 'env' for stdio/local use.",
          "isRequired": true,
          "format": "string",
          "default": "env",
          "name": "AUTH_MODE"
        },
        {
          "description": "Salesforce auth flow: 'client_credentials' (default, requires a Connected App with Client Credentials Flow enabled) or 'username_password' (fallback).",
          "format": "string",
          "default": "client_credentials",
          "name": "SALESFORCE_AUTH_FLOW"
        },
        {
          "description": "Connected App consumer key. Required when SALESFORCE_AUTH_FLOW=client_credentials.",
          "isRequired": true,
          "format": "string",
          "name": "SALESFORCE_CLIENT_ID"
        },
        {
          "description": "Connected App consumer secret. Required when SALESFORCE_AUTH_FLOW=client_credentials.",
          "isRequired": true,
          "format": "string",
          "isSecret": true,
          "name": "SALESFORCE_CLIENT_SECRET"
        },
        {
          "description": "Salesforce org's My Domain URL (e.g. https://yourorg.my.salesforce.com). Required when SALESFORCE_AUTH_FLOW=client_credentials.",
          "isRequired": true,
          "format": "string",
          "name": "SALESFORCE_INSTANCE_URL"
        },
        {
          "description": "Salesforce username. Only used when SALESFORCE_AUTH_FLOW=username_password.",
          "format": "string",
          "name": "SALESFORCE_USERNAME"
        },
        {
          "description": "Salesforce password. Only used when SALESFORCE_AUTH_FLOW=username_password.",
          "format": "string",
          "isSecret": true,
          "name": "SALESFORCE_PASSWORD"
        },
        {
          "description": "Salesforce security token. Only used when SALESFORCE_AUTH_FLOW=username_password; optional if the org has IP allowlisting configured instead.",
          "format": "string",
          "isSecret": true,
          "name": "SALESFORCE_TOKEN"
        },
        {
          "description": "Transport mode for the server. Set to 'stdio' for local CLI use; the image defaults to 'http' for gateway hosting.",
          "format": "string",
          "default": "stdio",
          "name": "MCP_TRANSPORT"
        },
        {
          "description": "Log verbosity: debug, info, warn, error",
          "format": "string",
          "default": "info",
          "name": "LOG_LEVEL"
        }
      ]
    }
  ]
}
mcp model-context-protocol oci

Comments

Sign in to leave a comment

Loading comments...