vastai-mcp

vastai-mcp

MCP server that wraps the Vast.ai REST API to enable LLM agents to search GPU marketplace, rent machines, manage instance lifecycle, run commands, and inspect billing.

Category
Visit Server

README

vastai-mcp

Polski

Vast.ai GPU cloud marketplace and instance management MCP server.

Wraps the Vast.ai REST API (https://console.vast.ai/api/v0) so an LLM agent can search the GPU marketplace, rent machines, manage lifecycle, run commands, and inspect billing.

Table of contents

Tools

Tool Parameters Description
search_offers query: Dict[str, Any] Search the GPU marketplace (POST /bundles/)
search_benchmarks gpu_name: Optional[str] = None GPU benchmark data (GET /benchmarks/)
search_templates select_filters: Optional[Dict] = None Search user and public templates (GET /template/)
get_gpu_metrics gpu_name, verified, datacenter Current supply/demand/pricing snapshot
get_gpu_trends gpu_names, window_hours=24, step Historical price/supply time-series
list_instances label: Optional[str] = None List user's instances (GET /instances/)
get_instance instance_id: int Instance details (GET /instances/{id}/)
create_instance offer_id, image/template_hash_id, disk, runtype, env, onstart, price, ... Rent a GPU (PUT /asks/{offer_id}/)
manage_instance instance_id, action: Literal[...], label? start/stop/label/reboot/recycle
destroy_instance instance_id: int Permanently destroy (DELETE /instances/{id}/)
change_bid instance_id, price: float Change spot bid price
show_instance_logs instance_id, tail=1000 Request instance logs
execute_command instance_id, command: str Run a remote command
get_current_user none Current account + credit balance
raw_request method, path, params?, body? Escape hatch for any other endpoint
register_ssh_key name, public_key_path Register a local public key on the Vast.ai account (POST /ssh/)
list_ssh_keys none List registered SSH keys (GET /ssh/)
get_instance_ssh_info instance_id Resolve ssh_host/ssh_port + ready-to-run ssh command
ssh_exec instance_id, command, key_path?, user="root", timeout=30 Run a command over SSH (paramiko)
ssh_transfer direction: Literal["upload","download"], instance_id, local_path, remote_path, key_path?, user="root" SFTP upload/download between local disk and instance

The query body for search_offers follows the Vast.ai filter operator convention: each field maps to {eq, neq, gt, lt, gte, lte, in, notin}. Example:

{
  "gpu_name": {"in": ["RTX 4090"]},
  "num_gpus": {"gte": 1},
  "reliability": {"gte": 0.99},
  "verified": {"eq": true},
  "rentable": {"eq": true},
  "type": "ondemand",
  "limit": 5
}

Environment variables

Variable Required Description
VASTAI_MCP_API_KEY yes Vast.ai API key (https://cloud.vast.ai/manage-keys/)
VASTAI_MCP_SSH_KEY_PATH no Default path to your SSH private key, used by ssh_exec and ssh_transfer when key_path is not passed per-call

Wiring it up

Only requirement: uv (https://docs.astral.sh/uv/). Nothing else to install.

Claude Code

claude mcp add vastai-mcp -e VASTAI_MCP_API_KEY=<value> -- uvx --from git+https://github.com/dam2452/vastai-mcp.git vastai-mcp

Claude Desktop / other MCP client

{
  "mcpServers": {
    "vastai-mcp": {
      "command": "uvx",
      "args": ["--from", "git+https://github.com/dam2452/vastai-mcp.git", "vastai-mcp"],
      "env": { "VASTAI_MCP_API_KEY": "<value>" }
    }
  }
}

After pushing a new version: uv cache clean and restart the client.

Local run

uv run --directory . vastai-mcp

Tests (manual):

uv run --directory . --with pytest pytest test/

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured