Skip to content

Commit 10df8a4

Browse files
authored
Migration guide update (#5636)
* docs: Add migration tool (MCP server) section to migration guide Add instructions for installing and configuring the SageMaker SDK migration MCP server tool. Includes setup for Kiro, Kiro CLI, VS Code (Cline), Claude Desktop, and Cursor. Documents available tools (analyze_code, transform_code, validate_code, ask_question), example usage, and troubleshooting steps. * docs: Update Feature Store status to supported in migration guide Feature Store is now supported in V3 via sagemaker.core.resources.FeatureGroup and FeatureStore. Update the status from REMOVED to SUPPORTED. * docs(migration): Add Codex CLI, VS Code Copilot, and Roo Code to MCP server IDE setup table Add configuration locations for additional IDEs that support the SageMaker migration MCP server: VS Code with Copilot, VS Code with Roo Code extension, and Codex CLI. * docs: Update MCP server name from sagemaker-migration-mcp to sagemaker-sdk-helper Replace all references to the deprecated sagemaker-migration-mcp binary with the correct sagemaker-sdk-helper command and server name across installation, configuration, and troubleshooting sections.
1 parent 376a6de commit 10df8a4

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

migration.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ pip install --no-cache-dir https://d3azyja9oqj8z1.cloudfront.net/sagemaker_sdk_h
3636
Verify installation:
3737

3838
```bash
39-
which sagemaker-migration-mcp # Should output the path to the executable
40-
sagemaker-migration-mcp --help # Test the server runs
39+
which sagemaker-sdk-helper # Should output the path to the executable
40+
sagemaker-sdk-helper --help # Test the server runs
4141
```
4242

4343
### IDE Setup
@@ -60,23 +60,23 @@ Add the following to your MCP configuration file:
6060
```json
6161
{
6262
"mcpServers": {
63-
"sagemaker-migration": {
64-
"command": "sagemaker-migration-mcp",
63+
"sagemaker-sdk-helper": {
64+
"command": "sagemaker-sdk-helper",
6565
"args": ["--log-level", "INFO"]
6666
}
6767
}
6868
}
6969
```
7070

71-
> **Note**: If you installed in a virtual environment, use the full path to the executable (find it with `which sagemaker-migration-mcp`).
71+
> **Note**: If you installed in a virtual environment, use the full path to the executable (find it with `which sagemaker-sdk-helper`).
7272
7373
**With SDK source artifacts (recommended, 20-30% better accuracy):**
7474

7575
```json
7676
{
7777
"mcpServers": {
78-
"sagemaker-migration": {
79-
"command": "/path/to/.venv/bin/sagemaker-migration-mcp",
78+
"sagemaker-sdk-helper": {
79+
"command": "/path/to/.venv/bin/sagemaker-sdk-helper",
8080
"args": [
8181
"--log-level", "INFO",
8282
"--v2-artifacts", "/path/to/sdk_v2/sagemaker-python-sdk",
@@ -96,8 +96,8 @@ For Kiro CLI, add the same configuration to `~/.kiro/settings/mcp.json`:
9696
```json
9797
{
9898
"mcpServers": {
99-
"sagemaker-migration": {
100-
"command": "sagemaker-migration-mcp",
99+
"sagemaker-sdk-helper": {
100+
"command": "sagemaker-sdk-helper",
101101
"args": ["--log-level", "INFO"]
102102
}
103103
}
@@ -135,10 +135,10 @@ You can also point the tool at entire notebooks for full conversion.
135135

136136
### Troubleshooting
137137

138-
- **Server not starting**: Verify the command path with `which sagemaker-migration-mcp`. Requires Python 3.9+.
139-
- **Permission denied**: Run `chmod +x /path/to/.venv/bin/sagemaker-migration-mcp`
138+
- **Server not starting**: Verify the command path with `which sagemaker-sdk-helper`. Requires Python 3.9+.
139+
- **Permission denied**: Run `chmod +x /path/to/.venv/bin/sagemaker-sdk-helper`
140140
- **Artifacts not loading**: Paths must be absolute. The server works without artifacts but with reduced accuracy.
141-
- **Manual test**: `echo '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' | sagemaker-migration-mcp`
141+
- **Manual test**: `echo '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' | sagemaker-sdk-helper`
142142

143143
---
144144

0 commit comments

Comments
 (0)