MCP server intelligence profile

Salesforce MCP Server

A natural language interface for Salesforce data that allows users to query accounts, opportunities, contacts, leads, and activities through conversational prompts.

Local Onlyalerundev
Awaiting current scanNpm · 0.2.1

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

1Distribution channel
25Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install salesforce-mcp-server from npm

Version 0.2.1 declares 1 executable entrypoint.

npm install --save-exact salesforce-mcp-server@0.2.1
npx -y -p salesforce-mcp-server@0.2.1 salesforce-mcp-server
MCP client configuration example
{
  "mcpServers": {
    "salesforce-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "salesforce-mcp-server@0.2.1",
        "salesforce-mcp-server"
      ]
    }
  }
}

Identity

Canonical slugsalesforce-mcp-server-2589132eDeploymentLocal Only
Canonical packagenpm:salesforce-mcp-serverRepositoryalerundev/salesforce-mcp-youtube
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
npmsalesforce-mcp-server0.2.112Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npmsalesforce-mcp-server0.2.1CurrentSep 5, 202625 toolsSucceeded · 0 resources · 0 promptsEvidence restricted
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

No public current-version evidence is available yet.

Current protocol inventory

2024-11-05Negotiated protocol
salesforce-mcp-serverServer-reported name
1Capability groups
Aug 18, 2026Observed

Tools 25

ToolCategoryAnnotationsRisk
analyze_soql_performanceAnalyze SOQL query performance
Input schema
{
  "type": "object",
  "properties": {
    "soql": {
      "type": "string",
      "minLength": 1
    }
  },
  "required": [
    "soql"
  ]
}
call_rest_apiMake a generic REST API call to Salesforce (supports GET, POST, PATCH, DELETE)
Input schema
{
  "type": "object",
  "properties": {
    "endpoint": {
      "type": "string",
      "description": "The API endpoint path (e.g., \"limits\", \"sobjects\", \"query\")",
      "minLength": 1
    },
    "method": {
      "type": "string",
      "enum": [
        "GET",
        "POST",
        "PATCH",
        "DELETE"
      ],
      "default": "GET",
      "description": "HTTP method to use"
    },
    "body": {
      "type": "object",
      "description": "Request body for POST/PATCH requests"
    },
    "params": {
      "type": "object",
      "description": "Query parameters"
    }
  },
  "required": [
    "endpoint"
  ],
  "additionalProperties": false
}
check_apex_sharingCheck Apex class sharing declarations
Input schema
{
  "type": "object",
  "properties": {
    "apexClassId": {
      "type": "string",
      "minLength": 15
    }
  },
  "required": [
    "apexClassId"
  ]
}
create_apex_classCreate a new Apex class
Input schema
{
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 40
    },
    "body": {
      "type": "string",
      "minLength": 1
    }
  },
  "required": [
    "name",
    "body"
  ]
}
delete_apex_classDelete an Apex class (use with caution)
Input schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "minLength": 15
    }
  },
  "required": [
    "id"
  ]
}
describe_sobjectDescribe a specific SObject using REST API
Input schema
{
  "type": "object",
  "properties": {
    "sobjectType": {
      "type": "string",
      "description": "Name of the SObject to describe",
      "minLength": 1
    }
  },
  "required": [
    "sobjectType"
  ],
  "additionalProperties": false
}
describe_tooling_objectGet schema information for Tooling API objects
Input schema
{
  "type": "object",
  "properties": {
    "sobjectType": {
      "type": "string",
      "minLength": 1
    }
  },
  "required": [
    "sobjectType"
  ]
}
execute_tooling_queryExecute SOQL queries against Tooling API
Input schema
{
  "type": "object",
  "properties": {
    "soql": {
      "type": "string",
      "minLength": 1
    },
    "limit": {
      "type": "number",
      "default": 100,
      "maximum": 2000
    }
  },
  "required": [
    "soql"
  ]
}
get_apex_classGet detailed information about a specific Apex class including its source code
Input schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The 15 or 18 character ID of the Apex class",
      "minLength": 15
    }
  },
  "required": [
    "id"
  ]
}
get_apex_pageGet detailed information about a Visualforce page
Input schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "minLength": 15
    }
  },
  "required": [
    "id"
  ]
}
get_apex_triggerGet detailed information about a specific Apex trigger
Input schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "minLength": 15
    }
  },
  "required": [
    "id"
  ]
}
get_async_apex_jobGet a specific AsyncApexJob record by ID using Tooling API
Input schema
{
  "type": "object",
  "properties": {
    "jobId": {
      "type": "string",
      "description": "The AsyncApexJob ID",
      "minLength": 15,
      "maxLength": 18
    }
  },
  "required": [
    "jobId"
  ],
  "additionalProperties": false
}
get_code_coverageGet code coverage information for Apex classes and triggers
Input schema
{
  "type": "object",
  "properties": {
    "apexClassOrTriggerId": {
      "type": "string"
    },
    "minCoverage": {
      "type": "number",
      "minimum": 0,
      "maximum": 100
    }
  }
}
get_debug_logsGet recent debug logs
Input schema
{
  "type": "object",
  "properties": {
    "limit": {
      "type": "number",
      "default": 10,
      "maximum": 100
    }
  }
}
get_org_infoGet organization information
Input schema
{
  "type": "object",
  "properties": {}
}
get_org_limitsGet organization limits information from Salesforce REST API
Input schema
{
  "type": "object",
  "properties": {},
  "additionalProperties": false
}
get_sobjects_listGet list of all available SObjects from Salesforce REST API
Input schema
{
  "type": "object",
  "properties": {},
  "additionalProperties": false
}
get_symbol_tableGet symbol table for an Apex class
Input schema
{
  "type": "object",
  "properties": {
    "apexClassId": {
      "type": "string",
      "minLength": 15
    }
  },
  "required": [
    "apexClassId"
  ]
}
list_apex_classesList Apex classes in the organization with optional name filtering
Input schema
{
  "type": "object",
  "properties": {
    "nameFilter": {
      "type": "string",
      "description": "Optional filter to search for classes by name"
    },
    "limit": {
      "type": "number",
      "description": "Maximum number of results to return (default: 50, max: 200)",
      "default": 50,
      "maximum": 200
    }
  }
}
list_apex_pagesList Visualforce pages
Input schema
{
  "type": "object",
  "properties": {
    "nameFilter": {
      "type": "string"
    },
    "limit": {
      "type": "number",
      "default": 50,
      "maximum": 200
    }
  }
}
list_apex_triggersList Apex triggers in the organization with optional name filtering
Input schema
{
  "type": "object",
  "properties": {
    "nameFilter": {
      "type": "string"
    },
    "limit": {
      "type": "number",
      "default": 50,
      "maximum": 200
    }
  }
}
run_testsExecute Apex tests
Input schema
{
  "type": "object",
  "properties": {
    "classIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}
search_async_apex_jobsSearch AsyncApexJob records using Tooling API
Input schema
{
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "description": "Job status filter (e.g., \"Completed\", \"Processing\", \"Queued\", \"Failed\")"
    },
    "jobType": {
      "type": "string",
      "description": "Job type filter (e.g., \"BatchApex\", \"Future\", \"Queueable\")"
    },
    "apexClassName": {
      "type": "string",
      "description": "Filter by Apex class name (partial match supported)"
    },
    "createdDateFrom": {
      "type": "string",
      "description": "Filter jobs created after this date (ISO format, e.g., \"2023-01-01T00:00:00Z\")"
    },
    "createdDateTo": {
      "type": "string",
      "description": "Filter jobs created before this date (ISO format, e.g., \"2023-12-31T23:59:59Z\")"
    },
    "limit": {
      "type": "number",
      "description": "Maximum number of records to return",
      "default": 100,
      "minimum": 1,
      "maximum": 2000
    }
  },
  "additionalProperties": false
}
update_apex_classUpdate the source code of an existing Apex class
Input schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "minLength": 15
    },
    "body": {
      "type": "string",
      "minLength": 1
    }
  },
  "required": [
    "id",
    "body"
  ]
}
validate_syntaxValidate Apex class syntax
Input schema
{
  "type": "object",
  "properties": {
    "apexClassId": {
      "type": "string",
      "minLength": 15
    }
  },
  "required": [
    "apexClassId"
  ]
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

Salesforce MCP Server questions

How do I install Salesforce MCP Server?

Install the selected package version with: npm install --save-exact salesforce-mcp-server@0.2.1

What tools does Salesforce MCP Server provide?

Salesforce MCP Server exposed 25 tools during independent protocol observation, including analyze_soql_performance, call_rest_api, check_apex_sharing, create_apex_class, delete_apex_class, describe_sobject, describe_tooling_object, execute_tooling_query, and others.

Is Salesforce MCP Server secure?

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

Company and product intelligence

These internal links are derived from strong identity fields such as the implementation name, package, repository, vendor, and listing name—not generic description prose.

Associated company landscape

Google intelligence →

Association is based on retained identity fields; it does not by itself prove first-party publication.

Associated company landscape

Salesforce intelligence →

Association is based on retained identity fields; it does not by itself prove first-party publication.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.