Skip to content
VS Code

flippa mcp for VS Code

io.github.sind00/flippa-mcp

Search, analyze, and evaluate online businesses for sale on Flippa.com marketplace.

client:VS Code transport:stdio runtime:npm

Install flippa mcp in VS Code

.vscode/mcp.json

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

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

flippa mcp in other clients