Skip to content
VS Code

cron402 for VS Code

io.github.userdefault13/cron402-mcp

Schedule webhook calls, pay per run in USDC on Base via x402. Ten tools, built for small models.

client:VS Code transport:stdio runtime:npm

Install cron402 in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "cron402-private-key",
      "description": "CRON402_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cron402-network",
      "description": "CRON402_NETWORK",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cron402-api-url",
      "description": "CRON402_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cron402-state-dir",
      "description": "CRON402_STATE_DIR",
      "password": true
    }
  ],
  "servers": {
    "cron402-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "cron402-mcp"
      ],
      "env": {
        "CRON402_PRIVATE_KEY": "${input:cron402-private-key}",
        "CRON402_NETWORK": "${input:cron402-network}",
        "CRON402_API_URL": "${input:cron402-api-url}",
        "CRON402_STATE_DIR": "${input:cron402-state-dir}"
      }
    }
  }
}

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

cron402 in other clients