Add Synorb MCP to Cursor so the agent can discover coverage, inspect cited Manifests, and code against real examples. Then ship the website with a server route that calls Synorb REST using server-side credentials. The frontend renders normalized news rows and links every item to its source.
Follow /build/cursor-mcp to add the Synorb MCP server with your MCP token. This is for development, not the deployed app.
Store SYNORB_API_KEY and SYNORB_SECRET as server-side environment variables. They should never appear in browser code, logs, or generated client bundles.
Decide whether the site is organized by one beat, multiple topics, tags, or sources. Use Synorb MCP to validate that scope before Cursor creates the data model and UI.
MCP is interactive and excellent for builder discovery. REST is the better production contract for a public news website because it is stateless, backend-owned, and easy to cache.
api-key + secret in server envCredential safetyCursor can read local files while developing, so keep real secrets in environment management and avoid asking the agent to paste them into source files.
Have your backend return only the fields the news UI needs. Keep raw credentials and low-level API details server-side.
Guides Cursor to inspect Synorb with MCP, then implement a backend route and cited frontend.
Check REST parameters, quota headers, and plan cadence before shipping.
Read how Synorb fits as an MCP data source for news-oriented agent workflows.
No. The MCP token belongs in Cursor for development. The deployed site should use Synorb REST from a backend with the REST api-key and secret stored server-side.
Ask Cursor to use Synorb MCP to search Streams, pull a small sample of Manifests, and learn the response shape before implementing the REST route.
Return normalized news rows with headline, summary, date, source_url, pagination state, and a quota or usage summary. Do not return credentials.
The canonical setup page is /build/cursor-mcp.
The same Synorb MCP connects to major MCP-capable coding agents. The deployed website should still use REST from a backend.
Generate credentials, connect Cursor, and build a news site with cited source links.