get_method_full_name_by_id
Retrieve the fully qualified name of a method using its unique ID for code review and security analysis in Joern MCP Server.
Instructions
Retrieves the fully qualified name of a method by its ID
@param id: The unique identifier of the method, the id is a Long int string, like '111669149702L'
@return: The fully qualified name of the method (e.g., com.android.nfc.NfcService$6.onReceive:void(android.content.Context,android.content.Intent))
Input Schema
Name | Required | Description | Default |
---|---|---|---|
method_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"method_id": {
"title": "Method Id",
"type": "string"
}
},
"required": [
"method_id"
],
"title": "get_method_full_name_by_idArguments",
"type": "object"
}