dashAI (unofficial) for VS Code
io.github.maarmapa/dashai-mcp
Train, track and query models on a running dashAI instance. Read-oriented, no delete tools.
client:VS Code
transport:stdio
runtime:pypi
Install dashAI (unofficial) in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "dashai-base-url",
"description": "DASHAI_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "dashai-allow-remote",
"description": "DASHAI_ALLOW_REMOTE",
"password": true
},
{
"type": "promptString",
"id": "dashai-timeout",
"description": "DASHAI_TIMEOUT",
"password": true
}
],
"servers": {
"dashai-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"dashai-mcp"
],
"env": {
"DASHAI_BASE_URL": "${input:dashai-base-url}",
"DASHAI_ALLOW_REMOTE": "${input:dashai-allow-remote}",
"DASHAI_TIMEOUT": "${input:dashai-timeout}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs