Skip to content
VS Code

mcp server for VS Code

io.github.declaw-ai/mcp-server

Secure Firecracker microVM sandboxes for AI agents: network policy, PII & injection guardrails.

client:VS Code transport:stdio runtime:npm

Install mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "declaw-api-key",
      "description": "DECLAW_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "declaw-domain",
      "description": "DECLAW_DOMAIN",
      "password": true
    }
  ],
  "servers": {
    "mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@declaw/mcp-server"
      ],
      "env": {
        "DECLAW_API_KEY": "${input:declaw-api-key}",
        "DECLAW_DOMAIN": "${input:declaw-domain}"
      }
    }
  }
}

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

mcp server in other clients