Skip to content
VS Code

MIND for VS Code

io.github.theastraway/mind

MIND knowledge-graph memory for agents. 44 tools: CRM, Life, MoneyMIND, Budget, Sheets, Email, Sign.

client:VS Code transport:stdio runtime:npm

Install MIND in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mind-api-key",
      "description": "MIND_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mind-base-url",
      "description": "MIND_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "mind": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@astramindapp/mcp-server"
      ],
      "env": {
        "MIND_API_KEY": "${input:mind-api-key}",
        "MIND_BASE_URL": "${input:mind-base-url}"
      }
    }
  }
}

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

MIND in other clients