get_class_full_name_by_id
Retrieve the fully qualified name of a class using its unique ID. This tool simplifies code review and security analysis by providing precise class identification in the Joern MCP Server environment.
Instructions
Retrieves the fully name of a class by its ID
@param id: The unique identifier of the class (typeDecl), the id is a Long int string, like '111669149702L'
@return: The fully name of the class (e.g., com.android.nfc.NfcService$6)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
class_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"class_id": {
"title": "Class Id",
"type": "string"
}
},
"required": [
"class_id"
],
"title": "get_class_full_name_by_idArguments",
"type": "object"
}