Nuanced MCP Server

analyze_change_impact

Analyze the impact of changing a specific function.

This tool performs a comprehensive impact analysis to help understand what would be affected if you modify the specified function.

Args: file_path: Path to the file containing the function function_name: Name of the function to analyze

Returns: A detailed analysis of the potential impact of changing the function

Input Schema

NameRequiredDescriptionDefault
file_pathYes
function_nameYes

Input Schema (JSON Schema)

{ "properties": { "file_path": { "title": "File Path", "type": "string" }, "function_name": { "title": "Function Name", "type": "string" } }, "required": [ "file_path", "function_name" ], "title": "analyze_change_impactArguments", "type": "object" }