Skip to content
VS Code

junto mcp for VS Code

io.github.vrllrv/junto-mcp

The payment protocol for people and agents. One MCP server, any payment rail.

client:VS Code transport:stdio runtime:npm

Install junto mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "woovi-app-id",
      "description": "WOOVI_APP_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "junto-daily-limit",
      "description": "JUNTO_DAILY_LIMIT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "junto-tx-max",
      "description": "JUNTO_TX_MAX",
      "password": true
    },
    {
      "type": "promptString",
      "id": "junto-confirm-above",
      "description": "JUNTO_CONFIRM_ABOVE",
      "password": true
    }
  ],
  "servers": {
    "junto-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "junto-mcp"
      ],
      "env": {
        "WOOVI_APP_ID": "${input:woovi-app-id}",
        "JUNTO_DAILY_LIMIT": "${input:junto-daily-limit}",
        "JUNTO_TX_MAX": "${input:junto-tx-max}",
        "JUNTO_CONFIRM_ABOVE": "${input:junto-confirm-above}"
      }
    }
  }
}

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

junto mcp in other clients