Skip to content
VS Code

profitlee mcp for VS Code

io.github.aronleedev/profitlee-mcp

MCP server for the Profitlee ecommerce profit calculator (Amazon FBA/FBM + TikTok Shop).

client:VS Code transport:stdio runtime:npm

Install profitlee mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "profitlee-api-token",
      "description": "PROFITLEE_API_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "profitlee-base-url",
      "description": "PROFITLEE_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "profitlee-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "profitlee-mcp"
      ],
      "env": {
        "PROFITLEE_API_TOKEN": "${input:profitlee-api-token}",
        "PROFITLEE_BASE_URL": "${input:profitlee-base-url}"
      }
    }
  }
}

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

profitlee mcp in other clients