get_syndication_status
Check CRM sync status across HubSpot, Salesforce, and Pipedrive to verify data freshness and prevent stale intelligence.
Instructions
Shows whether your CRM has your current intelligence or is running on stale data. Checks sync status across HubSpot, Salesforce, and Pipedrive.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/catalog.js:348-356 (registration)Registration of the 'get_syndication_status' tool in the static catalog.
{ name: 'get_syndication_status', description: 'Shows whether your CRM has your current intelligence or is running on stale data. Checks sync status across HubSpot, Salesforce, and Pipedrive.', annotations: READ_ONLY, inputSchema: { type: 'object', properties: {}, }, }, - src/server.js:56-58 (handler)Generic handler in the MCP server that proxies the tool call to the backend API client.
const { name, arguments: args } = request.params; try { return await client.callTool(name, args || {});