This Unreal Engine code analyzer MCP server, developed by Ayelet Technology Private Limited, provides powerful source code analysis capabilities for Unreal Engine codebases. Built with TypeScript and leveraging tree-sitter for robust C++ parsing, it enables AI assistants to deeply understand and analyze Unreal Engine source code. The server offers features like class analysis, hierarchy mapping, code search, reference finding, and subsystem analysis. It also includes a knowledge base of game genres and implementation patterns. By abstracting complex code analysis into standardized MCP endpoints, it allows AI systems to gain deep insights into Unreal Engine projects. This implementation is particularly useful for game developers, engine contributors, and AI assistants working on Unreal Engine-based projects, facilitating tasks like code comprehension, refactoring, and architectural analysis.
Aucun avis encore. Soyez le premier à donner votre avis !
Connectez-vous pour rejoindre la conversation
Get detailed information about a C++ class including methods, properties, and inheritance. Parameters: className (string)
Get the inheritance hierarchy for a specified class, including implemented interfaces. Parameters: className (string), includeImplementedInterfaces (boolean)
Find all references to a specified identifier, such as a function or variable. Parameters: identifier (string), type (string)
Search through code with context-aware results based on a query and optional file pattern. Parameters: query (string), filePattern (optional string), includeComments (optional boolean)
Detect patterns in a specified file to identify best practices and improvements. Parameters: filePath (string)
Get best practices for specific Unreal concepts such as UPROPERTY or UFUNCTION. Parameters: concept (string)
Search the API documentation for a specified query, category, and module. Parameters: query (string), category (string), module (string), includeExamples (optional boolean), maxResults (optional integer)
Analyze a specific Unreal Engine subsystem to get core classes and key features. Parameters: subsystem (string)