Skip to content
VS Code

incomeos for VS Code

io.github.perufitlife/incomeos

Ask what you earn across every income stream: Stripe, affiliates, app stores, ads, manual.

client:VS Code transport:stdio runtime:npm

Install incomeos in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "incomeos-url",
      "description": "INCOMEOS_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "incomeos-token",
      "description": "INCOMEOS_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "incomeos": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "incomeos-mcp"
      ],
      "env": {
        "INCOMEOS_URL": "${input:incomeos-url}",
        "INCOMEOS_TOKEN": "${input:incomeos-token}"
      }
    }
  }
}

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

incomeos in other clients