Skip to content
VS Code

saihm mcp for VS Code

io.github.saihm-admin/saihm-mcp

MCP standards client for your own custodial SAIHM operator. Free start: @saihm/mcp-server-pro

client:VS Code transport:stdio runtime:npm

Install saihm mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "saihm-endpoint-url",
      "description": "SAIHM_ENDPOINT_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "saihm-auth-header",
      "description": "SAIHM_AUTH_HEADER",
      "password": true
    }
  ],
  "servers": {
    "saihm-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@saihm/mcp-server"
      ],
      "env": {
        "SAIHM_ENDPOINT_URL": "${input:saihm-endpoint-url}",
        "SAIHM_AUTH_HEADER": "${input:saihm-auth-header}"
      }
    }
  }
}

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

saihm mcp in other clients