Skip to content
VS Code

letsclarify mcp for VS Code

io.github.heisee/letsclarify-mcp

Human-in-the-Loop API: AI agents create forms, share URLs with humans, get JSON back.

client:VS Code transport:stdio runtime:npm

Install letsclarify mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "letsclarify-api-key",
      "description": "LETSCLARIFY_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "letsclarify-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@heisee/letsclarify-mcp"
      ],
      "env": {
        "LETSCLARIFY_API_KEY": "${input:letsclarify-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

letsclarify mcp in other clients