GitHub Copilot

To configure the MCP Server in Eclipse GitHub Copilot, go to Window ‣ Preferences, select the GitHub Copilot ‣ Model Context Protocol (MCP) preference page, and add the following configuration.

{
    "servers": {
        "dvt": {
            "type": "stdio",
            "command": "/bin/bash",
            "args" : [
                "-c",
                "$DVT_HOME/bin/dvt_mcp.sh connect"
            ],
            "env": {
                "DVT_HOME": "/path/to/DVT_HOME"
            }
        }
    }
}

Note

Mainstream MCP hosts limit the environment of the MCP Server subprocess. Ensure that DVT_HOME and other necessary environment variables are properly set in the configuration.