Rent real GPUs from the terminal. Per-second billing, $0.50 minimum. stdio MCP server.
Rent real GPUs from the terminal with per-second billing and a $0.50 minimum. This stdio MCP server enables predictable, on-demand GPU access for inference and experimentation, integrating with the MCP protocol for streamlined command-based interaction.
π οΈ Key Features
Per-second billing with a $0.50 minimum
StdIO MCP server for easy integration
Real GPU rental via terminal
Supports AI inference workloads (LLMs, Llama-Cpp, etc.)
Marketplace-style GPU access through MCP
π Use Cases
On-demand GPU access for model inference and testing
Terminal-based experimentation with hardware acceleration
Quick prototyping for AI agents, AI-assisted workflows, and edge inference
β‘ Developer Benefits
MCP-compliant server for standardization
Clear, terminal-first interaction model
Lightweight integration using existing MCP tooling
Open topics including gpu-rental, inference, and marketplaces
β οΈ Limitations
Per-second billing implies short-lived sessions may incur minimal minimum
Real GPU availability depends on current resource pool
Descriptions limited to provided metadata; no additional features documented
Explains what GPUsMarket is and how to activate this MCP server (no API key on this session yet).
Parameters
No parameters.
Raw schema
{
"type": "object",
"properties": {}
}
gpusmarket_signup
Create a new GPUsMarket account. Requires the human's email. Returns an API key (shown once) and unlocks all GPUsMarket tools in this session immediately. To rent, the human adds a card via secure Stripe checkout β nothing is charged to sign up. Ask the human for their email before calling.
Parameters3
tenant
string
required
Short tenant slug, e.g. "my-agent"
email
string
required
Human email. Account + receipts are tied to this address.
Rent real GPUs from the terminal. Built for AI agents.
One command to sign up, one to rent, one to run inference. Per-second billing, no subscriptions, $0.50 minimum per rental. The CLI your coding agent can drive end-to-end: GPUsMarket.
npm install for GPUs. One command in, one command out.
Renting a GPU usually means a signup form, a quota request, a support ticket, and a $50 minimum β before you've run a single token. GPUsMarket collapses that to three commands: everything from consumer RTX 4090s to datacenter H100s and MI300Xs, rentable by the second. And it's built so your agent can sign up and rent by itself β no human, no browser, no dashboard.
Works with: Claude Code Β· Cursor Β· Cline Β· Windsurf Β· Aider Β· Codex Β· any MCP client
# Create an account (returns your API key, auto-saved)
gpusmarket signup --email you@example.com --tenant my-agent
# Find a GPU
gpusmarket search --gpu "RTX 4090"# Rent the cheapest match β returns an OpenAI/Ollama-compatible endpoint + key
gpusmarket rent --gpu "RTX 4090"# Run inference straight through your rental
gpusmarket chat "What is 2+2?" --model gemma3:4b
# Stop when done β you pay for exactly the seconds you used
gpusmarket stop RENTAL-ID
Built for agents
Built so an agent can go from zero to running inference with no human in the loop β sign up, rent, infer, and stop, all from the terminal or over MCP. This CLI is designed to be driven by AI coding agents (Claude Code, Cursor, Cline, Windsurf, Codex, Copilot), not just humans.
gpusmarket init β in-terminal quickstart: detects your agent's config file, prints a ready-to-paste skill block, MCP setup, and next steps.
gpusmarket init --agent-schema β the full command contract as JSON: every command, every flag, plus the rules agents must follow. Load it into context and your agent never hallucinates a flag.
--json everywhere β every command has machine-readable output.
Zero dependencies β a single self-contained Node.js CLI. Nothing to audit but us.
Watch an agent drive it end-to-end (click for the full-res video):
Claude Code searches, rents, runs inference, and stops the GPU β no human in the loop.
MCP server
gpusmarket mcp-serve exposes 32 tools over stdio β search, rent, status, stop, chat, host, pools, the whole surface. Add it to Claude Code:
bash
claude mcp add gpusmarket -- gpusmarket mcp-serve
β¦or drop it into any MCP client's .mcp.json. The MCP server runs outside your project directory, so pass your API key via the GPUSMARKET_API_KEY environment variable:
No key yet? Run gpusmarket signup to provision one, or grab it from your dashboard.
Core capabilities
Each demo links to the full-resolution MP4.
Browse the marketplace
Manage your rentals
Load-balance a pool
search Β· cheapest Β· models
rentals Β· status Β· stop
pool create Β· add Β· list
bash
# Browse
gpusmarket search --gpu "RTX 4090"# filter by GPU, price, model
gpusmarket cheapest --model gemma3:4b # the single cheapest node that serves a model
gpusmarket models # every model available across the marketplace# Manage
gpusmarket rentals # your active rentals
gpusmarket status RENTAL-ID # live status + running cost
gpusmarket stop RENTAL-ID # stop, pay for the seconds you used# Pool β one endpoint, several rentals behind it
gpusmarket pool create my-pool
gpusmarket pool add my-pool RENTAL-ID
gpusmarket pool list
Honest billing
Per-second billing. A 90-second experiment costs 90 seconds of GPU time.
A hold, not a charge. Renting places a pre-auth hold (default $10) β it's released in full when you stop. You are never charged the hold.
$0.50 minimum per rental. You pay per second for the compute you consume, subject to a $0.50 minimum charge per rental (disclosed when you rent). When you stop, your card is charged the exact usage cost, or the $0.50 minimum β whichever is greater.
Receipts for everything, with a full "where your money goes" breakdown.
Earn with your GPU
Your GPU earns nothing while it sits idle. List it in one command β the CLI auto-detects your hardware, prints your host key, and the listing goes live in minutes. You keep 90% of every rental, paid out to your Stripe account automatically. No port forwarding, no static IP, no open inbound ports.
Three ways to host (click any demo for the full-res video):
Mac (Apple Silicon)
NVIDIA GPU
Docker sidecar
gpusmarket host setup
auto-detects CUDA + VRAM
docker compose up -d
bash
gpusmarket host setup # auto-detects your GPU, creates the listing
npx gpusmarket-host --key KEY # connect your machine β no port forwarding needed
Commands
Command
Description
init
Quickstart guide (--agent-schema for the JSON command contract)
signup / login / logout / whoami
Account + API key management
search / models / cheapest
Browse the GPU marketplace
rent / rentals / status / stop
Rent, monitor, and stop GPUs
chat
Inference through your rental (streams, or pipe from stdin)
pool create/list/add/remove
Load-balance several rentals behind one key
host setup
List your own GPU for rent (auto-detects hardware)
mcp-serve
Start the MCP server (stdio)
Run gpusmarket --help for the full reference, flags included.
Features
Search β filter the marketplace by GPU, price, or the exact model you need to run.
Rent β one command returns an OpenAI/Ollama-compatible endpoint + key, ready for inference.
Chat β stream inference straight through your rental, or pipe from stdin.
Pools β put several rentals behind one endpoint and load-balance across them.
Host β list your own GPU (Mac, NVIDIA, or Docker) and keep 90% of every rental.
Per-second billing β receipts for everything, $0.50 minimum per rental, no subscriptions.
MCP server β 32 tools over stdio for Claude Code, Cursor, Cline, Windsurf, any MCP client.
Agent-native β --json everywhere plus init --agent-schema so agents never guess a flag.
Why this exists
Renting a GPU should be as fast as npm install. Not a signup form, a quota request, a support ticket, and a $50 minimum. GPUsMarket is a marketplace where anyone can list an idle GPU and anyone β or any agent β can rent it by the second. This CLI is the agent-native front door to that marketplace. It's early and moving fast: if something's rough or missing, open an issue β we read every one.
Documentation
Full docs at gpusmarket.com. Run gpusmarket init for the interactive quickstart.
License
Proprietary β Copyright (c) 2026 Tyga.Cloud Ltd. All rights reserved. See LICENSE file.
Install
Tools (2)
gpusmarket_get_startedgpusmarket_signup
Configuration
Environment variables
GPUSMARKET_API_KEYrequiredsecret
GPUsMarket API key (gpu_...). Required: the MCP server exits without one. Get a key with 'gpusmarket signup' or from your dashboard.