get_call_code_by_id
Retrieve the source code of a specific call node by its unique ID from the loaded CPG using the MCP server for code review and analysis.
Instructions
Get the source code of a specific call node from the loaded CPG by the call id
@param id: The unique identifier of the call node, the id is a Long int string, like '111669149702L'
@return: The source code of the specified call
Input Schema
Name | Required | Description | Default |
---|---|---|---|
code_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"code_id": {
"title": "Code Id",
"type": "string"
}
},
"required": [
"code_id"
],
"title": "get_call_code_by_idArguments",
"type": "object"
}