Skip to content
VS Code

MadTaco for VS Code

dev.madtaco/mcp

Verification and trust checks for AI agents: validate, screen, propose, accounts, usage.

client:VS Code transport:stdio runtime:npm

Install MadTaco in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "madtaco-api-base",
      "description": "MADTACO_API_BASE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "madtaco-api-key",
      "description": "MADTACO_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@madtaco/mcp"
      ],
      "env": {
        "MADTACO_API_BASE": "${input:madtaco-api-base}",
        "MADTACO_API_KEY": "${input:madtaco-api-key}"
      }
    }
  }
}

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

MadTaco in other clients