get_referenced_method_full_name_by_call_id
Retrieve the full method info referenced by a specific call ID using Joern MCP Server for precise code analysis and understanding.
Instructions
Get the method info by the call id which the call is referenced the method
@param id: The id of the call
@return: The method info of the call
Input Schema
Name | Required | Description | Default |
---|---|---|---|
call_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"call_id": {
"title": "Call Id",
"type": "string"
}
},
"required": [
"call_id"
],
"title": "get_referenced_method_full_name_by_call_idArguments",
"type": "object"
}