mediawiki_find_similar_pages
Identify duplicate or overlapping wiki pages by comparing content similarity to maintain consistency and reduce redundancy in MediaWiki wikis.
Instructions
Find pages with similar content (potential duplicates or overlaps).
USE WHEN: User asks "find similar pages", "are there duplicates", "what pages overlap with X".
NOT FOR: Finding related pages by links (use mediawiki_get_related).
PARAMETERS:
page: Source page name (required)
category: Limit search to category (optional)
min_score: Minimum similarity threshold 0-1 (default 0.5)
limit: Max similar pages (default 10)
RETURNS: Similar pages with similarity scores and linking recommendations.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | Yes | Page title to find similar pages for | |
| limit | No | Maximum similar pages to return (default 10, max 50) | |
| category | No | Limit search to pages in this category | |
| min_score | No | Minimum similarity score 0-1 (default 0.1) |