create-page
Create a wiki page by specifying title, content, and optional details like comment and content model using the MCP server for MediaWiki.
Instructions
Creates a wiki page with the provided content.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
comment | No | Reason for creating the page | |
contentModel | No | Type of content on the page. Defaults to "wikitext" | |
source | Yes | Page content in the format specified by the contentModel parameter | |
title | Yes | Wiki page title |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"comment": {
"description": "Reason for creating the page",
"type": "string"
},
"contentModel": {
"description": "Type of content on the page. Defaults to \"wikitext\"",
"type": "string"
},
"source": {
"description": "Page content in the format specified by the contentModel parameter",
"type": "string"
},
"title": {
"description": "Wiki page title",
"type": "string"
}
},
"required": [
"source",
"title"
],
"type": "object"
}