There are many more instances of toolkit within this repo, but the goal of this PR is to get rid of user facing references as much as possible. --------- Co-authored-by: Nate Barbettini <nate@arcade.dev>
36 lines
916 B
JSON
36 lines
916 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Debug `arcade mcp`",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/libs/arcade-cli/run_cli.py",
|
|
"args": ["mcp"],
|
|
"console": "integratedTerminal",
|
|
"jinja": true,
|
|
"justMyCode": true,
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
{
|
|
"name": "Debug `arcade login`",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/libs/arcade-cli/run_cli.py",
|
|
"args": ["login"],
|
|
"console": "integratedTerminal",
|
|
"jinja": true,
|
|
"justMyCode": true,
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
{
|
|
"name": "Run `python server.py`",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "server.py",
|
|
"console": "integratedTerminal",
|
|
"cwd": "/absolute/path/to/your/mcp_server",
|
|
"args": []
|
|
}
|
|
]
|
|
}
|