Install
openclaw skills install global-newsStay informed with Global News — get breaking news, top headlines, local city news, and full-text article search across Europe, Americas, Latin America, and Africa.
openclaw skills install global-newsGlobal News developed by Opera News.
Get up-to-date with the latest news from around the world! Global News delivers breaking news, headlines, and trending stories from dozens of countries — keeping you informed about the events that shape your community and the globe.
From live local news and daily briefings to international affairs, sports, politics, business, and weather alerts, Global News has you covered wherever you are and whatever you care about.
For more news, you can access https://www.operanewsapp.com
https://news-af.feednews.com/{country}/{language}/v1/mcp/news
Markets: Europe (e.g. de/de, fr/fr, gb/en), Americas (us/en), Latin America (br/pt, mx/es, ar/es), Africa (ng/en, za/en, ke/en)
Best for: Daily briefings, "what's happening today", top headlines for a country
API Call Example:
curl -X GET "https://news-af.feednews.com/us/en/v1/mcp/news/top_news?request_count=10&product=openclaw"
Parameters:
country: Market country code, e.g. us, ng, de, brlanguage: Language code, e.g. en, de, pt, esrequest_count (optional): Number of articles to return (default: 30)product: Always pass openclawResponse: JSON with articles array, each containing:
title: Article headlinesummary: Short excerpt of the articlethumbnail: Array of image URLs (may be empty)transcoded_url: Link to the full articleBest for: City-specific news, local events, community stories for a given city
API Call Example:
curl -X GET "https://news-af.feednews.com/us/en/v1/mcp/news/localnews?query=New%20York&product=openclaw"
Parameters:
country: Market country codelanguage: Language codequery: City name. URL-encode spaces and special characters (e.g. New York → New%20York). Required — returns 400 if missing, 404 if city is not recognised.product: Always pass openclawResponse: Same structure as get_global_top_news, articles are local to the specified city.
Best for: Topic-specific queries, answering "what happened with X", exploring a subject in depth
API Call Example:
curl -X GET "https://news-af.feednews.com/us/en/v1/mcp/news/search?query=election&page_size=10&product=openclaw"
Parameters:
country: Market country codelanguage: Language codequery: Search keyword(s). URL-encode spaces and special characters (e.g. nigeria election → nigeria%20election). Required — returns 400 if missing or empty.page_size (optional): Number of articles per page (default: 9)page_no (optional): Zero-based page index for pagination (default: 0)product: Always pass openclawResponse: Same structure as get_global_top_news
Best for: Finding trending or viral videos on a specific keyword or topic
API Call Example:
curl -X GET "https://news-af.feednews.com/$country/$language/clip/v1/video/search/hot?days=2&keyword=trump&size=5" \
--header "country: $country" \
--header "language: $language"
Parameters:
country: Market country code, e.g. us, ng, de, br (path parameter only)language: Language code, e.g. en, de, pt, es (path parameter only)days (optional): Look-back window in days (default: 2)keyword: Search keyword(s). Required — the topic or person to search forsize (optional): Number of videos to return (default: 5)Headers:
country: Same as the country path parameterlanguage: Same as the language path parameterResponse: JSON with content array, each item containing:
id: Video IDdescription: Video title / captionthumbnail.url: Thumbnail image URLvideo.duration: Duration in secondsvideo.share_url: Share link for the videopage_info.has_more: Whether more results are availableus/en if unclearUse the Bash tool to call the HTTP API.
Present articles in a clean, readable format:
### 📰 Top News — {Country}, {Date}
**1. {Title}**
{Summary}
🔗 [Read more]({transcoded_url})
**2. {Title}**
...
User: What's the news today in the US?
Assistant: Let me fetch today's top headlines for the US.
[Calls get_global_top_news: country=us, language=en, request_count=5]
### 📰 Top Headlines — United States
**1. Congress Reaches Budget Deal After Weeks of Negotiations**
Lawmakers have agreed on a spending framework to avoid a government shutdown...
🔗 [Read more](https://...)
**2. Tech Giants Report Strong Q1 Earnings**
Major technology companies posted better-than-expected quarterly results...
🔗 [Read more](https://...)
**3. Severe Storm Warning Issued Across the Midwest**
Forecasters are warning residents to prepare as a major storm system approaches...
🔗 [Read more](https://...)
User: What's happening in Lagos today?
Assistant: Let me get the latest local news for Lagos.
[Calls get_global_local_news: country=ng, language=en, query=Lagos]
### 📰 Lagos Local News
**1. Lagos State Launches New Traffic Management Initiative**
Authorities unveiled a new plan to ease congestion on major roads in the city...
🔗 [Read more](https://...)
**2. Heavy Rainfall Causes Flooding in Parts of Lagos Island**
Residents in low-lying areas are advised to stay indoors as waters rise...
🔗 [Read more](https://...)
User: What's happening with the elections in Nigeria?
Assistant: Let me search for the latest news on Nigeria elections.
[Calls search_global_news: country=ng, language=en, query=elections, page_size=5]
### 📰 Nigeria Election News
**1. Election Commission Announces Voter Registration Deadline**
Nigeria's INEC has set a new deadline for voter registration ahead of upcoming polls...
🔗 [Read more](https://...)
**2. Presidential Candidates Hold Final Debate**
The three main candidates faced off in a televised debate focused on economic policy...
🔗 [Read more](https://...)
| Tool | Best For |
|---|---|
| get_global_top_news | General briefing, "what's the news today" |
| get_global_local_news | City-specific news, local events |
| search_global_news | Specific topic, event, or keyword query |
🔗 Read more link using transcoded_urltranscoded_url is emptysummary as the article excerpt; omit if emptycurl GET requestsproduct=openclaw in every requestquery — spaces become %20 (applies to both search and local news)deeplink_url is reserved and always empty — do not expose to usersus/en when country/language cannot be determined