Skip to content
VS Code

longpath for VS Code

io.github.s-curvelabs/longpath

Read-only P6 / MS Project schedule analysis: CPM, float, DCMA 14-point, logic checks, S-curves.

client:VS Code transport:stdio runtime:pypi

Install longpath in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "longpath-config",
      "description": "LONGPATH_CONFIG",
      "password": true
    },
    {
      "type": "promptString",
      "id": "longpath-home",
      "description": "LONGPATH_HOME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "java-home",
      "description": "JAVA_HOME",
      "password": true
    }
  ],
  "servers": {
    "longpath": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "longpath"
      ],
      "env": {
        "LONGPATH_CONFIG": "${input:longpath-config}",
        "LONGPATH_HOME": "${input:longpath-home}",
        "JAVA_HOME": "${input:java-home}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

longpath in other clients