Skip to content
VS Code

artifyde mcp for VS Code

com.artifyde/artifyde-mcp

A home for your agent's HTML artifacts - publish, pull, share and review them over MCP.

client:VS Code transport:stdio runtime:npm

Install artifyde mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "artifyde-token",
      "description": "ARTIFYDE_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "artifyde-url",
      "description": "ARTIFYDE_URL",
      "password": true
    }
  ],
  "servers": {
    "artifyde-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "artifyde-mcp"
      ],
      "env": {
        "ARTIFYDE_TOKEN": "${input:artifyde-token}",
        "ARTIFYDE_URL": "${input:artifyde-url}"
      }
    }
  }
}

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

artifyde mcp in other clients