Skip to content
VS Code

conduitAI for VS Code

io.github.akbaraziz/conduitai

Search, browse, and install MCP servers, agents, skills, and plugins from conduitAI.

client:VS Code transport:stdio runtime:npm

Install conduitAI in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "conduitai-token",
      "description": "CONDUITAI_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "conduitai": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@conduitai-app/mcp-server"
      ],
      "env": {
        "CONDUITAI_TOKEN": "${input:conduitai-token}"
      }
    }
  }
}

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

conduitAI in other clients