What problem does it solve? NetEase Minecraft's ModAPI differs from international Bedrock, and AI models often hallucinate non-existent APIs, events, or enum values. This Skill forces verification against official documentation before any code is written, preventing broken mods built on fabricated interfaces. ## Core Features & Use Cases - Official API Lookup: Search NetEase ModAPI interfaces, events, and enums via the mcdk_assistant MCP server (search_api, search_event, search_enum, search_all). - JSON UI Tooling: Generate JSON UI templates with Python bindings, diagnose UI file errors, and patch large JSON files safely. - Offline Fallback: When the MCP server is unavailable, fall back to local Docs/ directories (ModAPI, mcguide, mconline) using Grep or semantic search. - Use Case: Before writing a mod that reads a player's position, use search_api to confirm GetPlayerPos exists, extract its exact signature and return type, then write code that matches the verified documentation. ## Quick Start Ask the assistant to look up the official NetEase documentation for the API or event you plan to use before writing any mod code.