You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: migration.md
+20-24Lines changed: 20 additions & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@
25
25
26
26
## Migration Tool (MCP Server)
27
27
28
-
An AI-powered migration tool is available as an MCP server that can analyze your V2 code, transform it to V3, validate the results, and answer migration questions interactively through your IDE.
28
+
This AI-powered migration tool is available as an MCP server to analyze your V2 code, transform it to V3, validate the results, and answer migration questions interactively through your IDE.
29
29
30
30
### Installation
31
31
@@ -61,32 +61,22 @@ Add the following to your MCP configuration file:
61
61
{
62
62
"mcpServers": {
63
63
"sagemaker-sdk-helper": {
64
-
"command": "sagemaker-sdk-helper",
65
-
"args": ["--log-level", "INFO"]
64
+
"command": "/path/to/installation",
65
+
"args": ["--log-level", "INFO"],
66
+
"autoApprove": [
67
+
"ask_question",
68
+
"transform_code",
69
+
"validate_code",
70
+
"analyze_code"
71
+
]
72
+
}
66
73
}
67
-
}
68
74
}
75
+
69
76
```
70
77
71
78
> **Note**: If you installed in a virtual environment, use the full path to the executable (find it with `which sagemaker-sdk-helper`).
0 commit comments