Skip to content
VS Code

recapfy for VS Code

io.github.pedrot95dev/recapfy

Ask about a YouTube video or fetch its transcript. Paid per call in USDC on Solana via x402.

client:VS Code transport:stdio runtime:npm

Install recapfy in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "svm-private-key",
      "description": "SVM_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "recapfy-api-base-url",
      "description": "RECAPFY_API_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "recapfy-allow-insecure-tls",
      "description": "RECAPFY_ALLOW_INSECURE_TLS",
      "password": true
    }
  ],
  "servers": {
    "recapfy": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "recapfy-mcp"
      ],
      "env": {
        "SVM_PRIVATE_KEY": "${input:svm-private-key}",
        "RECAPFY_API_BASE_URL": "${input:recapfy-api-base-url}",
        "RECAPFY_ALLOW_INSECURE_TLS": "${input:recapfy-allow-insecure-tls}"
      }
    }
  }
}

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

recapfy in other clients