Updated source context
Use feeds when the agent needs current information beyond model training data and static documentation.
AI agents do better with structured payloads than with scraped text. A useful JSON news API should make source, timing, topic, and citation data explicit.
Synorb returns source-grounded Manifests with stable IDs, source URLs, dates, summaries, tags, and Signals so agents can route and cite the object.
MCP · REST · Source URLs · Stable IDs · Manifests
For JSON-shaped news and source updates for AI agents, the useful unit is not a loose search result. It is an object the agent can retrieve, cite, filter, store, and audit.
Use feeds when the agent needs current information beyond model training data and static documentation.
Source URLs, dates, and stable IDs help the application cite, inspect, and audit what the model used.
Agents can explore through Core MCP. Production systems use REST and webhooks for current delivery. The live window covers the current calendar month plus the previous three full months; S3 archive exports support historical backfills and replay for older months.
This JSON manifest is the source-grounded object delivered through MCP or REST. It is compact enough for an agent workflow and explicit enough for an application to store, cite, and audit.
{
"manifest_id": "1777525429698648000",
"headline": "Source-grounded update for an AI workflow",
"summary": "What changed, why it matters, and what source supports it.",
"source": {
"name": "Watched source",
"url": "https://source.example/update",
"published_date": "2026-06-21"
},
"delivery": {
"mcp": "https://mcp.synorb.com/mcp",
"rest": "https://api.synorb.com"
},
"tags": ["company", "topic", "source-backed"]
}
Use Synorb when your team already knows the sources or topics it needs to monitor, and the workflow needs current context again and again. Use search or crawling for open-ended discovery.
Use Synorb MCP to discover Streams, inspect details, and retrieve Manifests inside an agent workflow.
Push source-grounded Manifests into retrieval stores before users ask for current answers.
Build dashboards, feeds, monitors, and briefings with source URLs available at display time.
It should return structured objects with source URLs, dates, stable IDs, summaries, tags, provenance, and delivery metadata.
Synorb centers the Manifest: a structured source-grounded object with Briefs, Signals, source metadata, and stable IDs, instead of making raw scraped text the primary unit.
JSON lets the application route, store, filter, and audit fields without asking the model to infer structure from a page.
Use REST for application code, Core MCP for agent workflows, and webhooks for push updates.
Want to connect to Synorb's graph to test source-grounded feeds for free? Start with free test credentials, then connect through Core MCP or REST.
curl -s https://synorb.com/connect
Start with keys, then connect through Core MCP while building or REST when your application owns the workflow.