BEFORE making any code changes, MUST:
- Use
mcp__get_document_symbols
on the target file to understand its structure - Use
mcp__find_usages
on any symbol being modified to identify all affected locations - Use
mcp__get_type_definition
and/ormcp__go_to_definition
for any types or symbols being modified - Use
mcp__get_hover_info
to verify function signatures and type information
BEFORE proceeding with changes:
-
If
mcp__find_usages
reveals usage in multiple files:- Must analyze each usage context
- Must verify type compatibility across all uses
- Must plan changes for all affected locations
-
If modifying interfaces or types:
- Must use
mcp__find_implementations
to locate all implementations - Must ensure changes won't break implementing classes
- Must verify backward compatibility or plan updates for all implementations
- Must use
MUST maintain type safety by:
-
Using
mcp__get_type_definition
for:- All modified parameters
- Return types
- Interface members
- Generic constraints
-
Using
mcp__get_hover_info
to verify:- Function signatures
- Type constraints
- Optional vs required properties
When making changes:
- First gather context:
// Example sequence
await mcp__get_document_symbols(file)
await mcp__find_usages(symbol)
await mcp__get_type_definition(symbol)
await mcp__get_hover_info(symbol)
- Then analyze impact:
// For each usage found
await mcp__get_hover_info(usage)
await mcp__get_type_definition(relatedTypes)
- Only then use
edit_file
After making changes:
- Use
mcp__get_document_symbols
to verify file structure remains valid - Use
mcp__find_usages
to verify all usages are still compatible - Use
mcp__get_hover_info
to verify new type signatures
-
Must use
mcp__find_usages
to:- Find all component instances
- Verify prop usage
- Check for defaultProps and propTypes
-
Must use
mcp__get_type_definition
for:- Prop interfaces
- State types
- Context types
- Must use
mcp__get_call_hierarchy
to:- Understand the call chain
- Identify dependent functions
- Verify changes won't break callers
- Must use
mcp__find_implementations
to:- Locate all implementing classes
- Verify compatibility
- Plan updates if needed
- NEVER modify a symbol without first:
await mcp__find_usages(symbol)
await mcp__get_type_definition(symbol)
- NEVER modify a type without:
await mcp__find_implementations(type)
await mcp__get_hover_info(type)
- NEVER modify a function signature without:
await mcp__get_call_hierarchy(function)
await mcp__find_usages(function)
When explaining changes, must reference:
- What tools were used to analyze the code
- What usages were found
- What type information was verified
- What impact analysis was performed
Example:
I analyzed the code using:
1. mcp__find_usages to locate all 5 usages of handleSubmit
2. mcp__get_type_definition to verify the function signature
3. mcp__get_hover_info to check parameter types
4. mcp__get_document_symbols to understand the component structure
Must ABORT changes if:
mcp__find_usages
reveals unexpected usagesmcp__get_type_definition
shows incompatible typesmcp__find_implementations
shows breaking changes- Unable to verify full impact using available tools
When analyzing code, use tools in this order:
mcp__get_document_symbols
(understand structure)mcp__find_usages
(understand impact)mcp__get_type_definition
(verify types)mcp__get_hover_info
(verify signatures)- Additional tools as needed