search_articles
Full-text search across articles by title, content, excerpt, and tags.
Schema and Policy
{
"name": "search_articles",
"description": "Full-text search across articles by title, content, excerpt, and tags.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search query string"
},
"limit": {
"type": "number"
}
},
"required": [
"query"
]
},
"category": "Content",
"authRequired": false,
"mutability": "read",
"status": "active"
}