netease-api-researcher

Verifies NetEase Minecraft ModAPI signatures, events, and enums against official documentation before coding.

Updated Apr 11, 2026
One-click install
npx skills add https://github.com/Coral5644/NekansModPack --skill netease-api-researcher-coral5644
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: netease-api-researcher
Source: https://github.com/Coral5644/NekansModPack/tree/main/.cursor/skills/netease-api-researcher
Command: npx skills add https://github.com/Coral5644/NekansModPack --skill netease-api-researcher-coral5644

SYSTEM DOCUMENTATION & REQUIREMENTS

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.

Frequently Asked Questions about netease-api-researcher

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I verify a NetEase Minecraft API before using it?▼

Use the mcdk_assistant MCP server's search_api tool with the interface name, such as GetPlayerPos, to retrieve the official signature, return type, and usage constraints. Never write code against an API that has not been confirmed in the documentation.

How to search NetEase ModAPI events and enums?▼

Use search_event for events like ServerChatEvent and search_enum for enumerations like ItemCategory. For broad queries across APIs, events, enums, and tutorials, use search_all with any keyword.

What is the difference between NetEase MC API and Bedrock API?▼

NetEase MC ModAPI is a proprietary interface layer that differs substantially from international Bedrock scripting APIs. The get_netease_diff tool provides an official comparison of differences between the two platforms.

What to do when the mcdk_assistant MCP server is unavailable?▼

Fall back to the local Docs directory, which contains offline copies of ModAPI references, mcguide tutorials, and mconline documentation. Use Grep or semantic search within the relevant Docs subdirectory to find the needed information.

Can this skill generate JSON UI for NetEase mods?▼

Yes, the mcdk_assistant server includes generate_ui_fullstack for JSON UI plus Python binding templates, diagnose_ui for format and layering checks, and patch_ui_file for safe edits to large JSON files.