Skip to content
VS Code

Silica Core for VS Code

io.github.kiycoh/silica-core

Retrieval over the folder the session opened: files, search, read, code_pack, write_note.

client:VS Code transport:stdio runtime:pypi

Install Silica Core in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "silica-vault",
      "description": "SILICA_VAULT",
      "password": true
    }
  ],
  "servers": {
    "silica-core": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "silica-core"
      ],
      "env": {
        "SILICA_VAULT": "${input:silica-vault}"
      }
    }
  }
}

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

Silica Core in other clients