Connects to MediaWiki instances (like Wikipedia) to search, read, create, and edit wiki pages through the REST API. Supports multiple wikis with automatic discovery and authenticated operations.

68355 views17Local (stdio)

What it does

  • Search wiki pages by title and content
  • Retrieve page content and revision history
  • Create and update wiki pages
  • Upload files to wikis
  • Manage multiple wiki instances
  • Access file information and downloads

Best for

Content creators managing wiki documentationDevelopers building wiki integrationsOrganizations maintaining internal wikisResearchers accessing MediaWiki data
Works with any MediaWiki instanceAuthenticated editing capabilitiesMulti-wiki support

Tools (16)

get-page

Returns a wiki page. Use metadata=true to retrieve the revision ID required by update-page. Set content="none" to fetch only metadata without content.

get-page-history

Returns information about the latest revisions to a wiki page, in segments of 20 revisions, starting with the latest revision. The response includes API routes for the next oldest, next newest, and latest revision segments.

search-page

Search wiki page titles and contents for the provided search terms, and returns matching pages.

set-wiki

Sets the wiki to use for the current session. You MUST call this tool when interacting with a new wiki.

update-page

Updates a wiki page. Replaces the existing content of a page with the provided content

Alternatives