get_page
Retrieve specific page content from MediaWiki sites like Wikipedia, Fandom, or wiki.gg by providing the page title. Useful for accessing detailed information directly.
Instructions
Get a page from mediawiki.org Args: title: The title of the page to get, which can be found in title field of the search results Returns: The page content
Input Schema
Name | Required | Description | Default |
---|---|---|---|
title | Yes |
Input Schema (JSON Schema)
{
"properties": {
"title": {
"title": "Title",
"type": "string"
}
},
"required": [
"title"
],
"title": "get_pageArguments",
"type": "object"
}