Quant Dashboard for Traders, MCP for Agents.
Hosted MCP · Newsroom
Four tools to read the Orakll wire — search, list by desk, and pull a full story with its underlying market link.
search_articles({query, limit?})Full-text search across the wire.list_recent_articles({category?, limit?})Newest articles, optionally filtered to one desk.get_article({slug})One article — Markdown body, condition_id, and market_slug.list_categories()The nine desks.| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | Yes | Search terms, matched across headline and body. |
slug | string | Yes | The article slug, e.g. from a feed result or a /article/<slug> URL. |
category | string | No | One of the nine desks. Omit for all desks. |
limit | number | No | Max results to return (default 20). |
A typical flow: search the wire, then pull the full body of the best match.
search_articles({ query: "iran ceasefire", limit: 5 })
→ { articles: [{ slug, headline, dek, category, tags, published_at }, …] }
get_article({ slug: "iran-israel-ceasefire-holds-…" })
→ { article: { headline, dek, category, body, condition_id, market_slug, published_at, updated_at } }Pair the article’s condition_id with the markets tools to read live price action alongside the reporting.