Skip to content
VS Code

mcp sift for VS Code

io.github.codespar/mcp-sift

MCP server for Sift — global ML fraud detection: real-time risk scoring, decisions, event ingestion

client:VS Code transport:stdio runtime:npm

Install mcp sift in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "sift-api-key",
      "description": "SIFT_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sift-account-id",
      "description": "SIFT_ACCOUNT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sift-base-url",
      "description": "SIFT_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "mcp-sift": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-sift"
      ],
      "env": {
        "SIFT_API_KEY": "${input:sift-api-key}",
        "SIFT_ACCOUNT_ID": "${input:sift-account-id}",
        "SIFT_BASE_URL": "${input:sift-base-url}"
      }
    }
  }
}

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

mcp sift in other clients