Skip to content
VS Code

lemonsqueezy mcp server for VS Code

io.github.intrepidservicesllc/lemonsqueezy-mcp-server

Lemon Squeezy SDK as MCP server. Give your AI assistant access to payment and subscription data.

client:VS Code transport:stdio runtime:npm

Install lemonsqueezy mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "lemonsqueezy-api-key",
      "description": "LEMONSQUEEZY_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "lemonsqueezy-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "lemonsqueezy-mcp-server"
      ],
      "env": {
        "LEMONSQUEEZY_API_KEY": "${input:lemonsqueezy-api-key}"
      }
    }
  }
}

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

lemonsqueezy mcp server in other clients