get_method_code_by_id
Retrieve method code using its unique ID to analyze implementation details, aiding in code review and security analysis within the Joern MCP Server environment.
Instructions
Get the code of a method by its class full name and method name
@param class_full_name: The fully qualified name of the class
@param method_name: The name of the method
@return: List of full name, name, signature and id of methods in the class
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_code_by_idArguments",
"type": "object"
}