{
  "info": {
    "name": "Minerstat — mcp.ai",
    "description": "REST API for the Minerstat 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/minerstat",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "minerstat_get_coins_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/coins/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "coins",
            "data"
          ]
        },
        "description": "Retrieves mining coin data from minerstat API including hashrates, difficulty, rewards, and prices. Use this tool to get current mining statistics for cryptocurrencies. You can filter results by speci",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"algo\": \"\",\n  \"list\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "minerstat_get_hardware_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/hardware/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "hardware",
            "data"
          ]
        },
        "description": "Retrieve mining hardware data from minerstat including hashrates, power consumption, and specifications. Use this tool to get benchmark data for GPUs and ASIC miners to compare mining performance acro",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\",\n  \"brand\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "minerstat_get_pools_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/pools/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "pools",
            "data"
          ]
        },
        "description": "Retrieve mining pool data from minerstat. Requires an authenticated minerstat connection. Returns a list of mining pools with their supported coins, fees, payout thresholds, and other details. Use to ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"coin\": \"\",\n  \"pool_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "minerstat_get_worker_activity",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/worker/activity",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "worker",
            "activity"
          ]
        },
        "description": "Retrieve activity logs for a specific worker for the last 3 days. Returns online/offline events, errors, and other activity for troubleshooting worker uptime issues or auditing worker behavior. The AP",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"worker\": \"\",\n  \"timezone\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "minerstat_get_worker_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/worker/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "worker",
            "data"
          ]
        },
        "description": "Retrieve detailed real-time data for a specific mining worker. This tool fetches comprehensive information about a worker including: - Current status (online/offline/idle) - Hardware info (GPUs/ASICs ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"worker\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}