Skip to content
VS Code

eBay Browse for VS Code

io.github.cunicopia-dev/ebay-mcp

eBay Browse API MCP server — buy-side listing search and price intelligence.

client:VS Code transport:stdio runtime:pypi

Install eBay Browse in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ebay-env",
      "description": "EBAY_ENV",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ebay-prd-app-id",
      "description": "EBAY_PRD_APP_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ebay-prd-cert-id",
      "description": "EBAY_PRD_CERT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ebay-sbx-app-id",
      "description": "EBAY_SBX_APP_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ebay-sbx-cert-id",
      "description": "EBAY_SBX_CERT_ID",
      "password": true
    }
  ],
  "servers": {
    "ebay-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "ebay-mcp"
      ],
      "env": {
        "EBAY_ENV": "${input:ebay-env}",
        "EBAY_PRD_APP_ID": "${input:ebay-prd-app-id}",
        "EBAY_PRD_CERT_ID": "${input:ebay-prd-cert-id}",
        "EBAY_SBX_APP_ID": "${input:ebay-sbx-app-id}",
        "EBAY_SBX_CERT_ID": "${input:ebay-sbx-cert-id}"
      }
    }
  }
}

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

eBay Browse in other clients