Skip to content
VS Code

Infimium for VS Code

io.github.aryankumar06/infimium

Private AI context layer for semantic code search, dependency graphs, memory, and workspaces.

client:VS Code transport:stdio runtime:npm

Install Infimium in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "search-api-key",
      "description": "SEARCH_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "search-provider",
      "description": "SEARCH_PROVIDER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "codebase-path",
      "description": "CODEBASE_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "local-docs-path",
      "description": "LOCAL_DOCS_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "chromadb-host",
      "description": "CHROMADB_HOST",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ollama-host",
      "description": "OLLAMA_HOST",
      "password": true
    },
    {
      "type": "promptString",
      "id": "shell-allowlist",
      "description": "SHELL_ALLOWLIST",
      "password": true
    }
  ],
  "servers": {
    "infimium": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "infimium"
      ],
      "env": {
        "SEARCH_API_KEY": "${input:search-api-key}",
        "SEARCH_PROVIDER": "${input:search-provider}",
        "CODEBASE_PATH": "${input:codebase-path}",
        "LOCAL_DOCS_PATH": "${input:local-docs-path}",
        "CHROMADB_HOST": "${input:chromadb-host}",
        "OLLAMA_HOST": "${input:ollama-host}",
        "SHELL_ALLOWLIST": "${input:shell-allowlist}"
      }
    }
  }
}

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

Infimium in other clients