Skip to content
VS Code

Lore Context for VS Code

io.github.lore-context/lore-context-mcp

Governed AI-agent memory, Evidence Ledger traces, evals, and portable context tools.

client:VS Code transport:stdio runtime:npm

Install Lore Context in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "lore-api-url",
      "description": "LORE_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "lore-api-key",
      "description": "LORE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "lore-mcp-transport",
      "description": "LORE_MCP_TRANSPORT",
      "password": true
    }
  ],
  "servers": {
    "lore-context-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@lore-context/server"
      ],
      "env": {
        "LORE_API_URL": "${input:lore-api-url}",
        "LORE_API_KEY": "${input:lore-api-key}",
        "LORE_MCP_TRANSPORT": "${input:lore-mcp-transport}"
      }
    }
  }
}

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

Lore Context in other clients