search_pages
Find relevant wiki pages on Wizzypedia by entering keywords, with customizable result limits for efficient searching within the MCP-enabled environment.
Instructions
Search for pages in the wiki using keywords
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of results to return (default: 10, max: 50) | |
query | Yes | Search query string |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"description": "Maximum number of results to return (default: 10, max: 50)",
"type": "number"
},
"query": {
"description": "Search query string",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}