Tool tree
Senior practitioner mentorship for organisations operating in the Intelligence Age. Skills and systems that make AI adoption stick.
page: /
subscribe_newsletterSensitive Action
Fill in the email newsletter signup form. The user must review the email address and click the button to confirm the subscription.
View tool JSON
{
"name": "subscribe_newsletter",
"kind": "transact",
"impl": "declarative",
"description": "Fill in the email newsletter signup form. The user must review the email address and click the button to confirm the subscription.",
"inputSchema": {
"type": "object",
"properties": {
"website": {
"type": "string"
}
}
},
"page": "/"
}page: /articles
get_site_infoAnswer
Get an overview of cloverbase.com: what the site is about and its key pages with URLs. Returns JSON.
View tool JSON
{
"name": "get_site_info",
"kind": "answer",
"impl": "imperative",
"description": "Get an overview of cloverbase.com: what the site is about and its key pages with URLs. Returns JSON.",
"inputSchema": {
"type": "object",
"properties": {}
},
"page": "/articles"
}list_postsAnswer
List the most recent published articles on cloverbase.com, newest first, optionally filtered by category. Returns title, date, category, excerpt, and URL as JSON.
View tool JSON
{
"name": "list_posts",
"kind": "answer",
"impl": "imperative",
"description": "List the most recent published articles on cloverbase.com, newest first, optionally filtered by category. Returns title, date, category, excerpt, and URL as JSON.",
"inputSchema": {
"type": "object",
"properties": {
"limit": {
"type": "number",
"description": "Maximum number of posts to return (1-50, default 10)."
},
"category": {
"type": "string",
"description": "Optional category name to filter by (case-insensitive)."
}
}
},
"page": "/articles"
}search_postsAnswer
Search published articles on cloverbase.com by keyword across title, category, tags, and excerpt. Returns the best matches as JSON with URLs.
View tool JSON
{
"name": "search_posts",
"kind": "answer",
"impl": "imperative",
"description": "Search published articles on cloverbase.com by keyword across title, category, tags, and excerpt. Returns the best matches as JSON with URLs.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Keywords to search for."
},
"limit": {
"type": "number",
"description": "Maximum number of results (1-50, default 5)."
}
},
"required": [
"query"
]
},
"page": "/articles"
}