Use MCP Server in Cline
To configure the DVT MCP Server in Cline’s VS Code Extension, go to , and add the following MCP server configuration.
{
"mcpServers": {
"dvt": {
"command": "/bin/bash",
"args": [
"-c",
"$DVT_HOME/platform/<os>_<arch>/bin/dvt_mcp.sh connect"
],
"env": {
"DVT_HOME": "<extensions_dir>/amiq.dvt-<version>-<os>-<arch>/dvt_home"
}
}
}
}
{
"mcpServers": {
"dvt": {
"command": "/bin/bash",
"args": [
"-c",
"$DVT_HOME/bin/dvt_mcp.sh connect"
],
"env": {
"DVT_HOME": "path/to/dvt_home"
}
}
}
}
Note
For security reasons, some MCP hosts do not propagate the full environment to spawned MCP servers. Ensure that DVT_HOME and other necessary environment variables are properly set in the configuration above.