Skip to content
VS Code

Siftable for VS Code

io.github.tom-r-main/mcp-server

Siftable MCP server for governed work, knowledge, calendar, people, datasets, and Vault.

client:VS Code transport:stdio runtime:npm

Install Siftable in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "sift-api-url",
      "description": "SIFT_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sift-pat",
      "description": "SIFT_PAT",
      "password": true
    }
  ],
  "servers": {
    "mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@siftable/mcp-server"
      ],
      "env": {
        "SIFT_API_URL": "${input:sift-api-url}",
        "SIFT_PAT": "${input:sift-pat}"
      }
    }
  }
}

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

Siftable in other clients