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.
No reviews yet. Be the first to review!
Sign in to join the conversation
Get detailed information about a specified C++ class, including its methods and properties. 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 (function, variable, etc.) in the codebase. Parameters: identifier (string), type (string)
Search through the codebase for specific queries, with the option to include comments and filter by file pattern. Parameters: query (string), filePattern (string), includeComments (boolean)
Detect common coding patterns in a specified file to help follow best practices. Parameters: filePath (string)
Retrieve best practices for specific Unreal Engine concepts such as UPROPERTY or UFUNCTION. Parameters: concept (string)
Search the API documentation for a specified query, filtering by category and module, and including examples. Parameters: query (string), category (string), module (string), includeExamples (boolean), maxResults (number)
Analyze a specified Unreal Engine subsystem to understand its core classes and features. Parameters: subsystem (string)