Velo adds server side logic to Wix sites. Operations teams still want trend evidence in dashboards without exporting CSVs from five vendors. Trends MCP exposes one POST contract so scheduled jobs can persist JSON safely behind normal Wix secrets.
Site owners on Wix already rely on Velo when they need custom forms, role based views, and light data models. Trend reporting is a different shape: time series, growth math, and occasional live leaderboards. Trends MCP centralizes those reads behind https://api.trendsmcp.ai/api, which keeps Velo code short and testable.
Many teams start with a spreadsheet export per platform. That path breaks when cron jobs need deterministic JSON and predictable failures. The REST body selects operations through fields rather than dozens of paths, so a Velo job can branch between get_trends, get_growth, and get_top_trends without new client libraries.
Treat each row as evidence, not as customer facing truth. Store the keyword, source, as_of timestamp, and a compact JSON payload. Render human summaries in admin only pages. If marketing later cites a number on a public page, add editorial review the same way the team would for any statistic.
HTTP 429 means the monthly quota needs a plan change or fewer cron repeats. data_unavailable should trigger a single retry with a simplified keyword, not an infinite loop. Missing parameters usually mean the scheduler shipped an empty string; log the payload hash and stop the chain.
For broader orchestration patterns, read API orchestration patterns for trend data and MCP agents. For SaaS style wiring without code, read Make trend automation and Zapier trend workflows.
FAQ