Skip to content
VS Code

iranti for VS Code

io.github.nfemmanuel/iranti

Persistent, shared memory for AI agents — facts, checkpoints, semantic search.

client:VS Code transport:stdio runtime:npm

Install iranti in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "database-url",
      "description": "DATABASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "iranti-api-key",
      "description": "IRANTI_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "iranti-url",
      "description": "IRANTI_URL",
      "password": true
    }
  ],
  "servers": {
    "iranti": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "iranti"
      ],
      "env": {
        "DATABASE_URL": "${input:database-url}",
        "IRANTI_API_KEY": "${input:iranti-api-key}",
        "IRANTI_URL": "${input:iranti-url}"
      }
    }
  }
}

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

iranti in other clients