Skip to content
VS Code

altronis mcp for VS Code

io.github.sypherin/altronis-mcp

Ask the Altronis AI advisor: grant-matched AI plans, SG AI events, news, ecosystem data. Read-only.

client:VS Code transport:stdio runtime:npm

Install altronis mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "altronis-base-url",
      "description": "ALTRONIS_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "altronis-timeout-ms",
      "description": "ALTRONIS_TIMEOUT_MS",
      "password": true
    }
  ],
  "servers": {
    "altronis-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@altronis/altronis-mcp"
      ],
      "env": {
        "ALTRONIS_BASE_URL": "${input:altronis-base-url}",
        "ALTRONIS_TIMEOUT_MS": "${input:altronis-timeout-ms}"
      }
    }
  }
}

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

altronis mcp in other clients