get-file
Fetch file details and download links, including thumbnail, preview, and original formats, by providing the file title using this MCP server tool for MediaWiki.
Instructions
Returns information about a file, including links to download the file in thumbnail, preview, and original formats.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
title | Yes | File title |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"title": {
"description": "File title",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}