Tool tree
Sabq — Saudi online newspaper covering local, regional and world news.
page: Every page
search_newsAnswer
Search Sabq news articles by Arabic or English keyword and open the results page.
View tool JSON
{
"name": "search_news",
"kind": "answer",
"impl": "imperative",
"description": "Search Sabq news articles by Arabic or English keyword and open the results page.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search keyword"
}
},
"required": [
"query"
]
},
"page": "/"
}open_categoryAction
Open a Sabq category page by its slug (e.g. 'sports', 'politics').
View tool JSON
{
"name": "open_category",
"kind": "act",
"impl": "imperative",
"description": "Open a Sabq category page by its slug (e.g. 'sports', 'politics').",
"inputSchema": {
"type": "object",
"properties": {
"slug": {
"type": "string",
"description": "Category slug"
}
},
"required": [
"slug"
]
},
"page": "/"
}open_articleAction
Open a Sabq article page by its slug.
View tool JSON
{
"name": "open_article",
"kind": "act",
"impl": "imperative",
"description": "Open a Sabq article page by its slug.",
"inputSchema": {
"type": "object",
"properties": {
"slug": {
"type": "string",
"description": "Article slug"
}
},
"required": [
"slug"
]
},
"page": "/"
}subscribe_newsletterSensitive Action
Request a Sabq newsletter subscription after explicit user consent. Email confirmation is required before activation.
View tool JSON
{
"name": "subscribe_newsletter",
"kind": "transact",
"impl": "imperative",
"description": "Request a Sabq newsletter subscription after explicit user consent. Email confirmation is required before activation.",
"inputSchema": {
"type": "object",
"properties": {
"email": {
"type": "string",
"description": "Subscriber email"
},
"frequency": {
"type": "string",
"enum": [
"daily",
"weekly"
]
},
"consent": {
"type": "boolean",
"description": "True only after explicit user consent"
}
},
"required": [
"email",
"frequency",
"consent"
]
},
"page": "/"
}toggle_themeAction
Toggle the Sabq site between light and dark themes.
View tool JSON
{
"name": "toggle_theme",
"kind": "act",
"impl": "imperative",
"description": "Toggle the Sabq site between light and dark themes.",
"inputSchema": {
"type": "object",
"properties": {
"theme": {
"type": "string",
"enum": [
"light",
"dark",
"toggle"
]
}
}
},
"page": "/"
}