{
  "info": {
    "name": "Vast.ai — mcp.ai",
    "description": "REST API for the Vast.ai MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/vast_ai",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "vast_ai_search_gpu_offers",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/gpu/offers",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "gpu",
            "offers"
          ]
        },
        "description": "Find currently rentable Vast.ai GPU compute offers using verified marketplace filters. Returns compact offer identifiers, GPU capacity, and hourly pricing for comparison; it does not rent an offer. Th",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"gpu_names\": \"\",\n  \"locations\": \"\",\n  \"gpu_counts\": \"\",\n  \"rentable_only\": false,\n  \"verified_only\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "vast_ai_search_templates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/templates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "templates"
          ]
        },
        "description": "Search Vast.ai launch templates by safe identifying metadata. The tool filters and pages locally because the provider returns a large unpaginated payload.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"hash_id\": \"\",\n  \"template_id\": 0,\n  \"name_contains\": \"\",\n  \"recommended_only\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "vast_ai_search_volume_offers",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/volume/offers",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "volume",
            "offers"
          ]
        },
        "description": "Find Vast.ai storage volume offers available in the marketplace. Returns compact location, capacity, and storage-cost details; it does not rent or modify a volume.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}