Skip to content
VS Code

originselect mcp server for VS Code

io.github.chhavimishra/originselect-mcp-server

Search ethical, origin-verified products and brands by country of origin

client:VS Code transport:stdio runtime:npm

Install originselect mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "api-base-url",
      "description": "API_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "intelligence-api-key",
      "description": "INTELLIGENCE_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "originselect-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "originselect-mcp-server"
      ],
      "env": {
        "API_BASE_URL": "${input:api-base-url}",
        "INTELLIGENCE_API_KEY": "${input:intelligence-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

originselect mcp server in other clients