← v-pod.com

INDIVIDUAL MCP TOOL

extend_rental

Keep a running pod alive past its expiry — extend an active rental by N more hours, paid in USDC on Base via x402 at your ORIGINAL per-hour price.

v-pod.comnone authenticationAvailability not checked

LIVE ENDPOINT

https://v-pod.com/mcp

No auth detected

Connect to this endpoint to inspect the live schema for extend_rental and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent server

v-pod.com

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.v-pod]
url = "https://v-pod.com/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "v-pod": {
      "type": "http",
      "url": "https://v-pod.com/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: v-pod
Remote MCP URL: https://v-pod.com/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "v-pod": {
      "url": "https://v-pod.com/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "v-pod": {
      "type": "http",
      "url": "https://v-pod.com/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "v-pod",
  "transport": "streamable-http",
  "url": "https://v-pod.com/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • list_gpu_offers — List live GPU compute offers from the V-Pod marketplace (gpu rental, inference, training, fine-tuning) — a live inventory-check and price-monitor over aggregated multi-cloud capacity, one normalized price in USD per GPU-hour.
  • get_gpu_offer — Fetch one GPU offer by its id (as returned by list_gpu_offers), including price in USD per GPU-hour.
  • quote_rental — Quote-generation for renting a GPU offer for N hours: exact USDC total (6-decimal atomic units; per_gpu_hour × gpu_count × hours), plus every open payment rail — x402 on Base (call rent_gpu_hours) or a direct USDC transfer on Base or Solana (then redeem_rental_transfer).
  • rent_gpu_hours — Rent a GPU offer for N hours, paid in USDC on Base via x402 — real cloud-ops: this PROVISIONS A REAL POD (SSH, container-ops on GPU cloud capacity) and terminates it automatically at expiry.
  • redeem_rental_transfer — Simple crypto rail (no x402 client needed): send the exact quoted USDC to the address from quote_rental — Base or Solana — then redeem with the transaction hash.
  • rent_with_credits — Rent a pod paying from your wallet's V-Pod credit balance (credits come from a top-up, or when a paid rental's provisioning failed and the payment was banked — so nothing is ever lost).
  • get_credit_balance — Read your wallet's V-Pod credit balance and recent ledger.
  • get_rental_status — Check a rental by its rental_id (returned by rent_gpu_hours / redeem_rental_transfer): status, expiry, and live SSH connection details once the pod is up.