search-page
Search wiki page titles and contents using specific terms and retrieve matching results with a configurable limit for MediaWiki content.
Instructions
Search wiki page titles and contents for the provided search terms, and returns matching pages.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of search results to return (1-100) | |
query | Yes | Search terms |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"description": "Maximum number of search results to return (1-100)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"query": {
"description": "Search terms",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}