Salesforce MCP Server (sunny980123/Salesforce-MCP-Server) is an MCP server listed on the M8ven Trust Index. It scores 56 out of 100, grade D. It declares 14 tools. No publisher has claimed this listing.

D
Caution
56/100

Salesforce MCP Server

Connects Salesforce CRM with Claude, enabling CRUD operations, SOQL/SOSL queries, metadata extraction, and sandbox management through natural language.

Caution. Specific findings reduced this grade. They are listed on the page. Grades reflect the full trust pyramid: code, verification depth, and reputation. New projects cap at C until adoption is earned.

How we verified

Code Verified⚡ Live Monitored: not connected

Verified is a snapshot. Live keeps it current, and builds your track record.

⚡ Connect GitHub → continuous verification on every pushwhy connect →

Who stands behind it

sunny980123

Source: Glama

Is this your MCP?

Claim it to get a verified publisher badge, a free copy of our full audit findings, and direct contact for any high-priority issues we find. Or connect your repo for our deepest verification, Live Monitored: read-only, revoke anytime. What we access →

Install from

The grade above is for the source repository. Registries can serve a different version, so we mark the ones we were not able to read.

// key findings
⚠️
Known vulnerabilities in dependencies: 16 high
Affects packages this MCP installs at runtime. Upgrade or remove the affected dependency.
14 tools verified — handlers match their declared behaviour
9 read-only tools verified — handlers contain no write/delete/exec
No credential exfiltration, no sensitive file access, no obfuscation
Static analysis found nothing flowing your secrets to unexpected places.
🔐
You'll be asked for 3 credentials: SALESFORCE_ACCESS_TOKEN, SALESFORCE_CLIENT_SECRET, SALESFORCE_PASSWORD
These are read from process.env at runtime. Make sure you trust where they’ll be sent.
// tools this server exposes14 tools

These names and descriptions are the publisher's own, read from the source code. We print them as written. Our assessment is the findings above, not this list.

salesforce_deploy_metadata
salesforce_retrieve_metadata
salesforce_describe_object

Get metadata for a Salesforce object: field names, types, labels, and whether fields are required/editable. Use this to discover what fields are available before writing SOQL queries or creating/updating records. Args: - object_type (string): The Salesforce object API name (e.g., 'Account', 'Con

salesforce_list_objects

List all available Salesforce objects (standard and custom) in the org. Use this to discover what objects exist before querying or manipulating data. Args: - filter (string): Optional text to filter object names/labels (case-insensitive) - queryable_only (boolean): If true, only return objects

salesforce_query

Execute a SOQL (Salesforce Object Query Language) query to retrieve records from Salesforce. SOQL is similar to SQL. Example queries: - SELECT Id, Name, Industry FROM Account WHERE Industry = 'Technology' LIMIT 10 - SELECT Id, Name, Email FROM Contact WHERE AccountId = '001xx000...' - SELECT Id, Na

salesforce_search

Search across multiple Salesforce objects using SOSL (Salesforce Object Search Language). Use SOSL when you want to search across multiple object types at once or do full-text search. Example SOSL queries: - FIND {Acme} IN ALL FIELDS RETURNING Account(Id, Name), Contact(Id, Name) - FIND {john@exam

salesforce_metadata_query

Execute a SOQL query using the Salesforce Tooling API to access metadata objects not available via standard SOQL. Use for: ValidationRule, Flow/FlowVersionView, ApexClass/ApexTrigger, WorkflowRule, FieldDefinition. Examples: - SELECT Id, ValidationName, Active, EntityDefinitionId FROM ValidationRu

salesforce_get_record

Retrieve a single Salesforce record by its ID. Args: - object_type (string): The Salesforce object type (e.g., 'Account', 'Contact', 'Opportunity') - record_id (string): The 15 or 18-character Salesforce record ID - fields (string[]): Optional list of specific fields to retrieve. If empty, re

salesforce_create_record

Create a new record in Salesforce. Args: - object_type (string): The Salesforce object type (e.g., 'Account', 'Contact', 'Lead') - fields (object): Key-value pairs of field API names and their values Returns: { id: string, success: boolean } - The new record ID on success. Common required f

salesforce_update_record

Update fields on an existing Salesforce record. Args: - object_type (string): The Salesforce object type (e.g., 'Account', 'Contact') - record_id (string): The 15 or 18-character Salesforce record ID - fields (object): Key-value pairs of field API names and their new values Returns: Confir

salesforce_delete_record

Permanently delete a Salesforce record. This action cannot be undone (record goes to Recycle Bin). Args: - object_type (string): The Salesforce object type (e.g., 'Account', 'Lead') - record_id (string): The 15 or 18-character Salesforce record ID to delete Returns: Confirmation message on s

salesforce_get_limits

Check your Salesforce org's current API usage and remaining limits. Returns: Key limits including: - DailyApiRequests: Daily REST API call quota (Max and Remaining) - DailyBulkApiRequests: Bulk API limits - Other org limits Use this to monitor API consumption before running large batch ope

salesforce_list_sandboxes

List all sandboxes registered under the production org via Tooling API SandboxInfo. Shows both existing sandboxes and in-progress creations. For status of an in-progress creation, also check SandboxProcess records (use salesforce_metadata_query). Args: - include_in_progress (bool): include Sandb

salesforce_create_sandbox

Create a new sandbox via Tooling API SandboxInfo. Requires Manage Sandboxes permission. Creation is asynchronous and can take minutes (Developer) to hours (Full). After creation, a SandboxProcess record tracks progress — use salesforce_list_sandboxes with include_in_progress=true to monitor. Args:

// known CVEs in dependencies16 high13 low

Disclosed vulnerabilities in this server's declared npm dependencies (via OSV). Whether each is reachable depends on the installed versions.

high@modelcontextprotocol/sdk@1.6.1GHSA-8r9q-7v3j-jr4g

Anthropic's MCP TypeScript SDK has a ReDoS vulnerability

high@modelcontextprotocol/sdk@1.6.1GHSA-w48q-cv73-mx4w

Model Context Protocol (MCP) TypeScript SDK does not enable DNS rebinding protection by default

highaxios@1.7.9GHSA-35jp-ww65-95wh

axios Vulnerable to Full Man-in-the-Middle via Prototype Pollution Gadget in `config.proxy`

highaxios@1.7.9GHSA-3g43-6gmg-66jw

axios Vulnerable to Credential Theft and Response Hijacking via Prototype Pollution Gadget in Config Merge

highaxios@1.7.9GHSA-43fc-jf86-j433

Axios is Vulnerable to Denial of Service via __proto__ Key in mergeConfig

Depend on this server? Get alerted when its CVEs change.Watch this server free →
// environment variables
To run this server yourself, you supply these values. They go in your own MCP client configuration and stay on your machine. The secret label means the value is sensitive, not that the server mishandles it.
🔐 secretSALESFORCE_ACCESS_TOKEN
configSALESFORCE_API_VERSION
configSALESFORCE_CLIENT_ID
🔐 secretSALESFORCE_CLIENT_SECRET
configSALESFORCE_INSTANCE_URL
configSALESFORCE_LOGIN_URL
configSALESFORCE_NO_DELETEclaude mcp add -s user salesforce -e SALESFORCE_SF_CLI_USERNAME=본인이메일@channel.io -e PATH=/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin -e =true -- npx -y github:sunny980123/Salesforce-MCP-Server
🔐 secretSALESFORCE_PASSWORD
configSALESFORCE_PRIVATE_KEY_PATH
configSALESFORCE_READONLY➖ true 시 모든 쓰기 차단 (조회만)
configSALESFORCE_SF_CLI_USERNAMEclaude mcp add -s user salesforce -e =본인이메일@channel.io -e PATH=/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin -e SALESFORCE_NO_DELETE=true -- npx -y github:sunny980123/Salesforce-MCP-Server
configSALESFORCE_USERNAME
// quality suggestions

License file

No license file

Add a LICENSE file (MIT, Apache-2.0, etc.).

Tests exist

No test files found

Add tests that exercise each declared tool.

Production dependencies are patched

0 critical, 16 high severity in production deps — @modelcontextprotocol/sdk@1.6.1 (high), @modelcontextprotocol/sdk@1.6.1 (high)

Run npm audit fix, or upgrade the affected packages to a non-vulnerable version.

Claim the listing to review these findings one by one and send us a correction where you disagree, straight to the team. Claiming also means we tell you when the grade moves, and reach you first if we find anything urgent.

// full audit trail
The findings above are the summary. The full trail, every check we ran, each deduction, the network hosts observed and the dependency advisories, goes to verified publishers, along with an alert whenever a new one lands. Verified publishers can also review each finding and dispute it in one click. Publisher corrections have sharpened several of our checks this month, because the maintainer knows the codebase better than any scanner.
// improvement guidance — verified publishers only
We have 3 concrete improvements we can share with the publisher of this MCP. Each comes with specific guidance to raise the trust score.
// embed badge in your README
[![M8ven Verified](https://m8ven.ai/badge/mcp/sunny980123/salesforce-mcp-server?variant=verified)](https://m8ven.ai/mcp/sunny980123/salesforce-mcp-server)
Shows verification status without the grade. Want the grade badge instead? Remove ?variant=verified from the URL.
commit: cf043717e24ca42a6583760b3073ada72f67a9e7
code hash: a25819896997f5c6596465f61682c1c1477b921728c908ff112bc23addd6acdc
view raw JSON →
Check MCPs from inside your assistant
Tool Check · MCP

Vetting this one by hand? Tool Check is an MCP that scores other MCPs. Add it once and ask Claude, ChatGPT, or any MCP client to grade a server, surface CVEs, check the publisher, and suggest safer alternatives — before you install.

https://m8ven.ai/api/mcp/tool-check
check_toolsearch_toolscompare_toolsrecommend_alternativescheck_publisherreport_concern
How to add it →Free · no account needed · works in any MCP client