MCP server enabling AI clients to interact with any MediaWiki wiki through standard tools
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Inspect callable tools, capabilities, and parameters exposed to AI agents by MediaWiki MCP Server.
compare-pagesDiff two versions of a wiki page by revision, title, or supplied wikitext.
get-category-membersList members of a category (up to 500 per call, paginated via `continueFrom`).
get-fileFetch a file page.
get-file-dataFetch a file's image bytes inline (base64) for visual analysis β for clients that can't reach the wiki host. Returns a scaled rendition (set `width`); non-renderable types (audio, video, binaries) error. For metadata or a download URL, use `get-file`.
get-links-hereList pages that reference a wiki page β pages that link to it, embed it as a template, or display it as a file (select via `type`), including pages that reach it through a redirect. Up to 500 per call, paginated via `continueFrom`.
get-pageFetch a wiki page.
An MCP (Model Context Protocol) server that enables Large Language Model (LLM) clients to interact with any MediaWiki wiki.
Every tool that operates on a wiki accepts an optional wiki argument naming the wiki to act on (the wiki-management and OAuth tools do not) β pass a wiki key (e.g. en.wikipedia.org) or the full mcp://wikis/{wikiKey} URI. Omit it to use the configured default wiki (see Configuration). Each tool response reports the wiki the call ran against. Each successful response carries its payload as prose in content and as JSON in structuredContent; see response channels.
| Name | Description |
|---|---|
compare-pages | Diff two versions of a wiki page by revision, title, or supplied wikitext. |
get-category-members | List members of a category (up to 500 per call, paginated via continueFrom). |
get-file | Fetch a file page. |
get-file-data | Fetch a file's image bytes inline (base64) for visual analysis β for clients that can't reach the wiki host. Returns a scaled rendition (set width); non-renderable types (audio, video, binaries) error. For metadata or a download URL, use get-file. |
get-links-here | List pages that reference a wiki page β pages that link to it, embed it as a template, or display it as a file (select via type), including pages that reach it through a redirect. Up to 500 per call, paginated via continueFrom. |
get-page | Fetch a wiki page. |
get-page-history | List recent revisions of a wiki page. |
get-pages | Fetch multiple wiki pages in one call (up to 50). |
get-recent-changes | List recent change events across the wiki, filterable by timestamp, namespace, user, tag, type, and hide flags (up to 50 per call, paginated via continue). |
get-revision | Fetch a specific revision of a page. |
get-site-info | Get a wiki's key settings: MediaWiki version, content language, title-case rules, namespaces, installed extensions, license, and (optionally) statistics. |
list-wikis | List every configured wiki β its key, sitename, server, whether it is read-only or the default, whether it is reachable, which extension-gated tools work on it, and, for an OAuth-configured wiki, its authorization server. Disabled when fewer than two wikis are configured. |
parse-wikitext | Render wikitext to HTML without saving. Returns parse warnings, wikilinks, templates, and external URLs. |
search-page | Search wiki page titles and contents (full-text). Searches the wiki's content namespaces unless given other namespace IDs. |
search-page-by-prefix | Search page titles by prefix. |
whoami | Report the identity the current session is authenticated as on the targeted wiki β username, whether it is anonymous, and group memberships (optionally user rights). |
| Name | Description | Permissions |
|---|---|---|
create-page π | Create a new wiki page. | Create, edit, and move pages |
delete-page π | Delete a wiki page. | Delete pages, revisions, and log entries |
move-page π | Move (rename) a wiki page. | Create, edit, and move pages |
undelete-page π | Undelete a wiki page. | Delete pages, revisions, and log entries |
update-file π | Upload a new revision of an existing file from local disk. | Upload, replace, and move files |
update-file-from-url π | Upload a new revision of an existing file from a URL. | Upload, replace, and move files |
update-page π | Update an existing wiki page: overwrite it, add to it, or rewrite one passage of it. | Edit existing pages |
upload-file π | Upload a file to the wiki from local disk. | Upload new files |
upload-file-from-url π | Upload a file to the wiki from a URL. | Upload, replace, and move files |
| Name | Description |
|---|---|
add-wiki | Add a wiki as an MCP resource from its URL. Disabled when allowWikiManagement is false. |
remove-wiki | Remove a wiki resource. Disabled when allowWikiManagement is false or fewer than two wikis are configured. |
| Name | Description |
|---|---|
oauth-logout | Remove stored OAuth tokens. Stdio only. |
oauth-status | List stored OAuth tokens with scopes and expiry (no token values). Stdio only. |
Each pack's tools register only on wikis where its extension is installed.
| Name | Description |
|---|---|
neowiki-list-schemas | List schemas (entity types) and their property counts. |
neowiki-get-schema | Get one schema's property definitions, relations, and select options. |
neowiki-cypher-query | Run a read-only Cypher query against the knowledge graph. |
neowiki-search-subjects | Find subject IDs by label within a schema. |
neowiki-get-subject | Fetch one subject's structured data by ID. |
neowiki-get-page-subjects | List the subjects attached to a wiki page. |
neowiki-create-subject | Create a subject (child or main) on a page. Requires the edit right. |
neowiki-update-subject | Replace a subject's label and statements. Requires the edit right. |
neowiki-delete-subject | Delete a subject by ID. Requires the edit right. |
neowiki-set-main-subject | Set or clear a page's main subject. Requires the edit right. |
neowiki-validate-subject | Dry-run validate a proposed subject and return violations. |
| Name | Description |
|---|---|
smw-list-properties | List Semantic MediaWiki properties with copy-paste templates for smw-query. |
smw-query | Run a Semantic MediaWiki #ask query. |
| Name | Description |
|---|---|
bucket-query | Run a Bucket Lua query. |
| Name | Description |
|---|---|
cargo-list-tables | List Cargo tables defined on the wiki. |
cargo-describe-table | List a Cargo table's fields with their types and list-flags. |
cargo-query | Run a Cargo SQL-style query. |
| Name | Description |
|---|---|
wikibase-search-entities | Find items and properties by label or alias. |
wikibase-get-entity | Read one entity's terms and statements, with referenced IDs resolved to labels. |
wikibase-query | Run a SPARQL query against the wiki's query service. Offered only for a repository whose siteinfo publishes one. |
wikibase-edit-entity | Create or change an entity from Wikibase entity JSON. Requires the edit right. |
wikibase-add-statement | Add one statement with an item, string, external-id or url value. Requires the edit right. |
mcp://wikis/{wikiKey} β per-wiki resource exposing sitename, server (the wiki's public address), articlepath, scriptpath, and the private and readOnly flags.
add-wiki or remove-wiki, the server sends notifications/resources/list_changed so clients refresh.The variables below are relevant to any setup. Variables that only apply when self-hosting the HTTP transport (ports, timeouts, Host/Origin and SSRF guards) or running the hosted OAuth proxy are in docs/deployment.md β environment variables. Config-file substitution and upload-directory variables are in docs/configuration.md.
Factual signals from GitHub, npm, and our automated checks β not a rating.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/mediawiki-mcp-server)<a href="https://allmcps.com/mcp/mediawiki-mcp-server"><img src="https://allmcps.com/api/badge/mediawiki-mcp-server?style=directory" alt="MediaWiki MCP Server on AllMCPs" /></a>