experiment_topup

Pack: ai-model-experiments · Endpoint: https://gateway.pipeworx.io/ai-model-experiments/mcp

How to add prepaid credits for experiments (and your current balance). Payment is x402 — USDC on Base, paid in-band by any wallet-equipped agent: POST https://gateway.pipeworx.io/credits/topup?amount_usd=10 responds HTTP 402 with payment requirements; retry with PAYMENT-SIGNATURE to settle and the credits land instantly. Example: experiment_topup({})

Parameters

NameTypeRequiredDescription
amount_usdnumbernoIntended top-up amount in USD (1-500) — echoed into the instructions

Example call

Arguments

{
  "amount_usd": 25
}

curl

curl -X POST https://gateway.pipeworx.io/ai-model-experiments/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"experiment_topup","arguments":{"amount_usd":25}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('experiment_topup', {
  "amount_usd": 25
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "ai-model-experiments": {
      "url": "https://gateway.pipeworx.io/ai-model-experiments/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 6, 2026