search_pages
Retrieve WikiJS pages by entering a search query, optionally narrowing results by path or locale, enabling efficient content discovery and integration.
Instructions
Search for pages in WikiJS by query string
Input Schema
Name | Required | Description | Default |
---|---|---|---|
locale | No | Optional locale for the search (e.g., "en") | |
path | No | Optional path to limit search scope | |
query | Yes | Search query to find pages |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"locale": {
"description": "Optional locale for the search (e.g., \"en\")",
"pattern": "^[a-z]{2}(-[A-Z]{2})?$",
"type": "string"
},
"path": {
"description": "Optional path to limit search scope",
"type": "string"
},
"query": {
"description": "Search query to find pages",
"minLength": 1,
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}