Skip to content
VS Code

simlir mcp server for VS Code

io.github.simlir/simlir-mcp-server

Simlir MCP server for semantic product search, visual search, and exact product lookup.

client:VS Code transport:stdio runtime:npm

Install simlir mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "simlir-api-key",
      "description": "SIMLIR_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "simlir-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@simlir-ai/mcp-server"
      ],
      "env": {
        "SIMLIR_API_KEY": "${input:simlir-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

simlir mcp server in other clients