Skip to content
VS Code

three.ws 3D Agent Tools for VS Code

io.github.nirholas/3d-agent-mcp

MCP tools from three.ws: free + paid text-to-3D, rigging, agent reputation, market intel.

client:VS Code transport:stdio runtime:npm

Install three.ws 3D Agent Tools in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mcp-svm-payment-address",
      "description": "MCP_SVM_PAYMENT_ADDRESS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "solana-rpc-url",
      "description": "SOLANA_RPC_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "helius-api-key",
      "description": "HELIUS_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "3d-agent-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@three-ws/mcp-server"
      ],
      "env": {
        "MCP_SVM_PAYMENT_ADDRESS": "${input:mcp-svm-payment-address}",
        "SOLANA_RPC_URL": "${input:solana-rpc-url}",
        "HELIUS_API_KEY": "${input:helius-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

three.ws 3D Agent Tools in other clients