trigger_syndication
Updates stale CRM platforms with latest buyer intelligence to maintain accurate revenue data.
Instructions
Pushes your latest intelligence into your CRM — detects which platforms are out of date and updates only what's stale. Use get_syndication_status first to see what needs updating.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| platforms | No | Only sync these platforms (e.g., ["hubspot"]). If omitted, syncs all stale platforms. |
Implementation Reference
- src/client.js:36-38 (handler)The handler for calling tools delegates the execution to the Andru backend via an HTTP POST request to /api/mcp/tools/call.
async callTool(name, args) { return this.post('/api/mcp/tools/call', { tool: name, arguments: args }); } - src/catalog.js:358-372 (schema)Definition of the trigger_syndication tool including its name, description, and input schema.
{ name: 'trigger_syndication', description: 'Pushes your latest intelligence into your CRM — detects which platforms are out of date and updates only what\'s stale. Use get_syndication_status first to see what needs updating.', annotations: WRITE_OP, inputSchema: { type: 'object', properties: { platforms: { type: 'array', items: { type: 'string' }, description: 'Only sync these platforms (e.g., ["hubspot"]). If omitted, syncs all stale platforms.', }, }, }, },