Salesforce
liveSaaSProductivityQuery, search, and manage Salesforce CRM records — accounts, contacts, opportunities — via SOQL and SOSL
Disify works without a key until the shared anonymous daily quota runs out, which it usually has. Pass your own key as _apiKey on the gateway URL for your own quota.
Tools
sf_queryExecute a SOQL query against Salesforce. Returns matching records.
No parameters required.
Try it
sf_get_recordGet a single Salesforce record by object type and ID.
No parameters required.
Try it
sf_searchExecute a SOSL search across Salesforce objects.
No parameters required.
Try it
sf_describeDescribe a Salesforce SObject schema — fields, relationships, metadata.
No parameters required.
Try it
sf_list_objectsList all available Salesforce SObject types in the org.
No parameters required.
Try it
sf_create_recordCreate a new Salesforce record.
No parameters required.
Try it
sf_update_recordUpdate an existing Salesforce record.
No parameters required.
Try it
sf_delete_recordDelete a Salesforce record.
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/salesforce/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'curl -X POST https://gateway.pipeworx.io/salesforce/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"sf_query","arguments":{}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("sf_query", {});// Or ask in plain English:
const answer = await px.ask("query, search, and manage salesforce crm records — accounts, contacts, opportunities — via soql and sosl");