Skip to content
VS Code

secondhand mcp for VS Code

io.github.jlsookiki/secondhand-mcp

Search Facebook Marketplace, eBay, Depop, and Poshmark from AI — filters, photos, full listings.

client:VS Code transport:stdio runtime:npm

Install secondhand mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ebay-client-id",
      "description": "EBAY_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ebay-client-secret",
      "description": "EBAY_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ebay-marketplace-id",
      "description": "EBAY_MARKETPLACE_ID",
      "password": true
    }
  ],
  "servers": {
    "secondhand-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "secondhand-mcp"
      ],
      "env": {
        "EBAY_CLIENT_ID": "${input:ebay-client-id}",
        "EBAY_CLIENT_SECRET": "${input:ebay-client-secret}",
        "EBAY_MARKETPLACE_ID": "${input:ebay-marketplace-id}"
      }
    }
  }
}

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

secondhand mcp in other clients