Skip to content
VS Code

aispace for VS Code

sh.aispace/mcp

Secure, expiring artifact storage and handoff for AI agents.

client:VS Code transport:stdio runtime:npm

Install aispace in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "aispace-key",
      "description": "AISPACE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "aispace-url",
      "description": "AISPACE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "aispace-allowed-roots",
      "description": "AISPACE_ALLOWED_ROOTS",
      "password": true
    }
  ],
  "servers": {
    "mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@aispace-sh/cli"
      ],
      "env": {
        "AISPACE_KEY": "${input:aispace-key}",
        "AISPACE_URL": "${input:aispace-url}",
        "AISPACE_ALLOWED_ROOTS": "${input:aispace-allowed-roots}"
      }
    }
  }
}

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

aispace in other clients