Back to tools

create_faq

Create a new FAQ entry.

Schema and Policy
{
  "name": "create_faq",
  "description": "Create a new FAQ entry.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "question": {
        "type": "string",
        "description": "The FAQ question"
      },
      "answer": {
        "type": "string",
        "description": "The FAQ answer"
      },
      "category": {
        "type": "string",
        "description": "FAQ category"
      },
      "order": {
        "type": "number",
        "description": "Display order (lower = first)"
      }
    },
    "required": [
      "question",
      "answer",
      "category",
      "order"
    ]
  },
  "category": "FAQ",
  "authRequired": true,
  "mutability": "write",
  "status": "auth_required"
}