get_article
Get a single article by ID or slug. Returns full content and increments view counter.
Schema and Policy
{
"name": "get_article",
"description": "Get a single article by ID or slug. Returns full content and increments view counter.",
"inputSchema": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"slug": {
"type": "string"
}
}
},
"category": "Content",
"authRequired": false,
"mutability": "read",
"status": "active"
}