mediawiki_resolve_title
Resolve page title typos or capitalization errors to find the correct wiki page when 'page not found' errors occur.
Instructions
RECOVERY tool when page not found due to case sensitivity or typos.
USE WHEN: User got "page not found" and suspects wrong capitalization or spelling. E.g., "module overview" should be "Module Overview".
NOT FOR: Finding pages about a topic (use mediawiki_search instead).
PARAMETERS:
title: Approximate page name (required)
fuzzy: Enable fuzzy matching for typos (default true)
max_results: Max suggestions (default 5)
RETURNS: Suggested correct page titles with confidence scores.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| fuzzy | No | Enable fuzzy matching for similar titles | |
| title | Yes | Page title to resolve (can be inexact) | |
| rationale | No | Optional one-sentence explanation of why you are calling this tool. Used for audit trails when present. | |
| max_results | No | Max suggestions to return (default 5) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| message | Yes | ||
| page_id | No | ||
| exact_match | Yes | ||
| suggestions | No | ||
| resolved_title | No |