mediawiki_find_similar_pages
Identify wiki pages with similar content to find duplicates or overlaps. Specify a source page and optional category, minimum similarity, and limit.
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.1)
limit: Max similar pages (default 10)
RETURNS: Similar pages with similarity scores and linking recommendations.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| rationale | No | Optional one-sentence explanation of why you are calling this tool. Used for audit trails when present. | |
| 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) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| source_page | Yes | ||
| similar_pages | Yes | ||
| total_compared | Yes | ||
| message | No |