get_method_code_by_full_name
Retrieve the source code of a method using its fully qualified name to simplify code analysis and debugging in the Joern MCP Server environment.
Instructions
Get the code of a method by its fully name, If you know the full name of the method, you can use this tool to get the method code directly. If you only know the full name of the class and the name of the method, you should use get_method_code_by_class_full_name_and_method_name @param method_full_name: The fully qualified name of the method (e.g., com.android.nfc.NfcService$6.onReceive(android.content.Context,android.content.Intent)) @return: The source code of the specified method
Input Schema
Name | Required | Description | Default |
---|---|---|---|
method_full_name | Yes |