Terradev CLI

v5.7.5
Cross-Cloud GPU Provisioning Β· Training Β· Inference Orchestration
21+
Cloud Providers
218
MCP Tools
90%
Max Cost Savings
9x
vLLM Throughput

πŸ’° Price Arbitrage

21+ providers, real-time spot pricing, up to 90% savings vs on-demand

πŸ”¬ NUMA Topology

Auto-aligned GPU/NIC, GPUDirect RDMA, SR-IOV β€” eliminates 30-50% BW penalty

πŸ‹οΈ Training Pipeline

torchrun Β· DeepSpeed Β· Accelerate Β· Megatron + FlashOptim auto-injection

🧠 MoE Templates

KV cache offloading, speculative decoding, sleep mode β€” all auto-applied

⚑ Disaggregated Inference

Prefill/decode separation via NIXL + sticky routing for MoE at scale

πŸ€– MCP Server

218 tools for Claude Code, stdio transport, one-command install via PyPI or the MCP Registry

πŸ—„οΈ RAG Stack

Qdrant vector DB, NeMo Guardrails, Arize Phoenix tracing β€” deploy in one command

☸️ K8s GPU Clusters

Karpenter NodePools, GPU operator, MIG, time-slicing, Prometheus/Grafana

Install Terradev CLI

You can install with pip or run it on-demand with uvx.

pip

pip install terradev-cli

uvx (no install)

uvx terradev-cli --help

Note: provider-specific extras are available: pip install "terradev-cli[aws,gcp,azure]".

Connect the MCP Server

Terradev publishes an MCP server to the official MCP Registry as io.github.theoddden/terradev. It exposes 218+ tools for GPU provisioning, training, and inference right inside Claude.

1. Claude Code (CLI)

Quickest way to connect inside a project:

claude mcp add terradev uvx terradev-cli mcp serve

2. Claude Desktop

Add this entry to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or the equivalent on your OS:

{
  "mcpServers": {
    "terradev": {
      "command": "uvx",
      "args": ["terradev-cli", "mcp", "serve"],
      "env": {
        "TERRADEV_API_KEY": "your-api-key",
        "TERRADEV_PROVIDER": "aws"
      }
    }
  }
}

3. Via the MCP Registry

View or install the server from the official registry:

https://registry.modelcontextprotocol.io

4. Local / Manual (pip)

pip install terradev-cli
terradev mcp serve

Optional environment variables

Tip: For the easiest, no-install setup, use uvx terradev-cli mcp serve with Claude Code or Claude Desktop.