Skip to content
VS Code

UnlimitedTTS for VS Code

com.unlimitedtts/tts

Quote-first, non-custodial x402 text-to-speech with spend policy, MP3 artifacts, and receipts.

client:VS Code transport:stdio runtime:npm

Install UnlimitedTTS in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "unlimitedtts-environment",
      "description": "UNLIMITEDTTS_ENVIRONMENT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "unlimitedtts-max-usdc-per-call",
      "description": "UNLIMITEDTTS_MAX_USDC_PER_CALL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "unlimitedtts-rolling-24h-usdc",
      "description": "UNLIMITEDTTS_ROLLING_24H_USDC",
      "password": true
    },
    {
      "type": "promptString",
      "id": "unlimitedtts-output-directory",
      "description": "UNLIMITEDTTS_OUTPUT_DIRECTORY",
      "password": true
    }
  ],
  "servers": {
    "tts": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@unlimitedtts/mcp"
      ],
      "env": {
        "UNLIMITEDTTS_ENVIRONMENT": "${input:unlimitedtts-environment}",
        "UNLIMITEDTTS_MAX_USDC_PER_CALL": "${input:unlimitedtts-max-usdc-per-call}",
        "UNLIMITEDTTS_ROLLING_24H_USDC": "${input:unlimitedtts-rolling-24h-usdc}",
        "UNLIMITEDTTS_OUTPUT_DIRECTORY": "${input:unlimitedtts-output-directory}"
      }
    }
  }
}

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

UnlimitedTTS in other clients