{
  "info": {
    "name": "Roboflow — mcp.ai",
    "description": "REST API for the Roboflow 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/roboflow",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "roboflow_describe_workflow_interface",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/describe/workflow/interface",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "describe",
            "workflow",
            "interface"
          ]
        },
        "description": "Tool to describe the interface of a workflow specification. Use when you need to understand the inputs, outputs, and types for a Roboflow workflow definition.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"api_key\": \"\",\n  \"specification\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "roboflow_get_execution_engine_versions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/execution/engine/versions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "execution",
            "engine",
            "versions"
          ]
        },
        "description": "Tool to retrieve available Execution Engine versions from Roboflow workflows API. Use when you need to check which execution engine versions are supported for workflow processing.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "roboflow_get_server_info",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/server/info",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "server",
            "info"
          ]
        },
        "description": "Tool to retrieve information about the Roboflow inference server. Use when you need to check the server version, name, or unique identifier.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "roboflow_get_server_metrics",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/server/metrics",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "server",
            "metrics"
          ]
        },
        "description": "Tool to retrieve Prometheus metrics from the Roboflow inference server. Use when monitoring server performance, tracking inference statistics, or debugging server health issues.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "roboflow_get_workflow_schema",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/workflow/schema",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "workflow",
            "schema"
          ]
        },
        "description": "Tool to fetch the workflows block schema from Roboflow. Use when you need to retrieve the complete schema definition for workflow blocks.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "roboflow_run_workflow",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/run/workflow",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "run",
            "workflow"
          ]
        },
        "description": "Tool to run a workflow specification with provided inputs. Use when you need to execute a custom Roboflow workflow pipeline for image processing, model inference, or other computer vision tasks.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"inputs\": {},\n  \"api_key\": \"\",\n  \"is_preview\": false,\n  \"workflow_id\": \"\",\n  \"specification\": {},\n  \"excluded_fields\": \"\",\n  \"enable_profiling\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "roboflow_validate_workflow",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/validate/workflow",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "validate",
            "workflow"
          ]
        },
        "description": "Tool to validate a Roboflow workflow specification before execution. Use this to check if your workflow definition is syntactically correct and properly structured.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"steps\": \"\",\n  \"inputs\": \"\",\n  \"api_key\": \"\",\n  \"outputs\": \"\",\n  \"version\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}