1.0.2npm · salesforce-mcp · current release
Observed 2026-08-22T10:33:30.819Z using mcpSecurity-inventory. Status: succeeded. Negotiated protocol: 2024-11-05.
{
"tools": {}
}| Tool | Category | Annotations | Risk |
|---|---|---|---|
Create Data DictionaryCreate a data dictionary from one or more Salesforce objects and export as Excel (one tab per object)Input schema{
"type": "object",
"properties": {
"objects": {
"type": "string",
"description": "Comma-separated list of Salesforce objects (e.g., 'Account, Contact, CustomObject__c')"
},
"outputFile": {
"type": "string",
"description": "Filename for the Excel output (e.g., 'data_dictionary.xlsx')"
}
},
"required": [
"objects",
"outputFile"
]
} | — | — · — | — |
Describe Salesforce ObjectDescribe a Salesforce object and return its field information in CSV formatInput schema{
"type": "object",
"properties": {
"objectName": {
"type": "string",
"description": "Name of the Salesforce object to describe (e.g., Account, Contact, CustomObject__c)"
},
"outputFile": {
"type": "string",
"description": "Optional filename to save the CSV output (e.g., 'account_fields.csv')"
}
},
"required": [
"objectName"
]
} | — | — · — | — |
Find Similar ObjectsFind Salesforce objects with similar namesInput schema{
"type": "object",
"properties": {
"searchTerm": {
"type": "string",
"description": "Search term to find similar object names"
}
},
"required": [
"searchTerm"
]
} | — | — · — | — |
List Salesforce ObjectsList all available Salesforce objectsInput schema{
"type": "object",
"properties": {
"searchTerm": {
"type": "string",
"description": "Optional search term to filter objects"
}
}
} | — | — · — | — |