Skip to content
VS Code

mossgate mcp for VS Code

dev.mossgate/mossgate-mcp

mcp stdio server exposing mossgate trust and rue render apis with x402 usdc payment

client:VS Code transport:stdio runtime:npm

Install mossgate mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mossgate-buyer-pk",
      "description": "MOSSGATE_BUYER_PK",
      "password": true
    }
  ],
  "servers": {
    "mossgate-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mossgate-mcp"
      ],
      "env": {
        "MOSSGATE_BUYER_PK": "${input:mossgate-buyer-pk}"
      }
    }
  }
}

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

mossgate mcp in other clients