Skip to content
VS Code

mcp installation for VS Code

com.proabono/mcp-installation

Installs ProAbono into a website from the IDE: hosted pages, catalogue, customers, subscriptions.

client:VS Code transport:stdio runtime:npm

Install mcp installation in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "proabono-api-base",
      "description": "PROABONO_API_BASE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "proabono-business-id",
      "description": "PROABONO_BUSINESS_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "proabono-segment-ref",
      "description": "PROABONO_SEGMENT_REF",
      "password": true
    },
    {
      "type": "promptString",
      "id": "proabono-agent-key",
      "description": "PROABONO_AGENT_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "proabono-api-key",
      "description": "PROABONO_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "proabono-portal-secret",
      "description": "PROABONO_PORTAL_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "proabono-webhook-secret",
      "description": "PROABONO_WEBHOOK_SECRET",
      "password": true
    }
  ],
  "servers": {
    "mcp-installation": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@proabono/mcp-installation"
      ],
      "env": {
        "PROABONO_API_BASE": "${input:proabono-api-base}",
        "PROABONO_BUSINESS_ID": "${input:proabono-business-id}",
        "PROABONO_SEGMENT_REF": "${input:proabono-segment-ref}",
        "PROABONO_AGENT_KEY": "${input:proabono-agent-key}",
        "PROABONO_API_KEY": "${input:proabono-api-key}",
        "PROABONO_PORTAL_SECRET": "${input:proabono-portal-secret}",
        "PROABONO_WEBHOOK_SECRET": "${input:proabono-webhook-secret}"
      }
    }
  }
}

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

mcp installation in other clients