Skip to main content
Glama

MinecraftWiki_resolveRedirect

Find the actual page title when encountering redirects on the Minecraft Wiki by resolving them to their final destination.

Instructions

Resolve a redirect and return the title of the target page.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYesTitle of the page to resolve the redirect for.

Implementation Reference

  • The main handler function for the MinecraftWiki_resolveRedirect tool. It queries the MediaWiki API with redirects=true to resolve the target page title and returns a JSON object with original and resolved titles.
    async resolveRedirect(title: string): Promise<string> {
      const response = await apiService.get<WikiResponse, Record<string, unknown>>("", {
        action: "query",
        titles: title,
        redirects: true,
      });
    
      const pages = response.query?.pages;
      if (!pages) {
        throw new Error(`Failed to resolve redirect for "${title}"`);
      }
    
      const page = Object.values(pages)[0];
      if (page.missing) {
        throw new Error(`Page "${title}" not found`);
      }
    
      return JSON.stringify({
        originalTitle: formatMCPText(title),
        resolvedTitle: formatMCPText(page.title),
      });
    }
  • The Tool schema definition for MinecraftWiki_resolveRedirect, including name, description, and input schema requiring a 'title' string.
    export const RESOLVE_REDIRECT_MINECRAFTWIKI_TOOL: Tool = {
      name: "MinecraftWiki_resolveRedirect",
      description: "Resolve a redirect and return the title of the target page.",
      inputSchema: {
        type: "object",
        properties: {
          title: {
            type: "string",
            description: "Title of the page to resolve the redirect for.",
          },
        },
        required: ["title"],
      },
    };
  • src/server.ts:106-112 (registration)
    The registration of the tool handler in the MCP server's CallToolRequestSchema switch statement, which validates args with isResolveRedirectArgs and calls wikiService.resolveRedirect.
    case RESOLVE_REDIRECT_MINECRAFTWIKI_TOOL.name: {
      if (!isResolveRedirectArgs(args)) {
        throw new Error("Invalid arguments for resolveRedirect");
      }
      const resolvedTitle = await wikiService.resolveRedirect(args.title);
      return { content: [{ type: "text", text: resolvedTitle }] };
    }
  • src/server.ts:56-56 (registration)
    The tool is included in the list returned by ListToolsRequestSchema handler.
    RESOLVE_REDIRECT_MINECRAFTWIKI_TOOL,
  • Type guard function used to validate input arguments for the resolveRedirect tool.
    export function isResolveRedirectArgs(args: unknown): args is { title: string } {
      return (
        typeof args === "object" &&
        args !== null &&
        "title" in args &&
        typeof (args as { title: string }).title === "string"
      );
    }
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It mentions the action ('Resolve a redirect') and output ('return the title'), but lacks details on behavior such as error handling (e.g., if the page is not a redirect), rate limits, or authentication needs. This leaves significant gaps for a tool that modifies or interprets data.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that directly states the tool's function and output. It is front-loaded with the core action and has no unnecessary words, making it highly concise and well-structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's low complexity (one parameter, no output schema, no annotations), the description is minimally adequate. It covers the basic purpose but lacks behavioral context and usage guidelines, which are needed for full understanding, especially without annotations to fill in gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% coverage, fully describing the single parameter 'title'. The description does not add meaning beyond the schema, as it only implies the parameter is used for resolution without extra details. With high schema coverage, the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose with a specific verb ('Resolve') and resource ('a redirect'), and identifies the output ('return the title of the target page'). However, it does not explicitly differentiate from sibling tools like 'MinecraftWiki_getPageContent' or 'MinecraftWiki_searchWiki', which might also involve page titles, though the function is distinct.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It does not mention scenarios like handling redirects in search results or preprocessing titles for other tools, nor does it specify exclusions or prerequisites, leaving usage context unclear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/L3-N0X/Minecraft-Wiki-MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server