{
  "info": {
    "name": "HelloTracks — mcp.ai",
    "description": "REST API for the HelloTracks 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/hello_tracks",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "hello_tracks_archive_job",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/archive/job",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "archive",
            "job"
          ]
        },
        "description": "Archive one HelloTracks job while keeping it recoverable in HelloTracks.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"job_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hello_tracks_delete_job",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/job",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "job"
          ]
        },
        "description": "Permanently delete one HelloTracks job; use only for a disposable or intentionally removed job.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"job_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hello_tracks_get_account_context",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/account/context",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "account",
            "context"
          ]
        },
        "description": "Identify the connected HelloTracks account and return its company, teams, units, and API-enabled state.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hello_tracks_get_current_locations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/current/locations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "current",
            "locations"
          ]
        },
        "description": "Read precise latest-known GPS coordinates and available movement, elevation, and battery telemetry for selected visible HelloTracks members, optionally with addresses, without pinging their devices.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"member_ids\": \"\",\n  \"include_address\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hello_tracks_get_job",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/job",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "job"
          ]
        },
        "description": "Retrieve one HelloTracks job by its job ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"job_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hello_tracks_list_jobs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/jobs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "jobs"
          ]
        },
        "description": "List HelloTracks jobs with optional time, progress, archive, external-ID, and assignee filters, returning one controllable page.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"progress\": \"\",\n  \"external_id\": \"\",\n  \"next_cursor\": \"\",\n  \"created_since\": 0,\n  \"updated_since\": 0,\n  \"include_archived\": false,\n  \"assignee_username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hello_tracks_list_members",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/members",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "members"
          ]
        },
        "description": "Search visible HelloTracks members for identity and assignment details without returning location or device telemetry.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\",\n  \"max_results\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hello_tracks_list_places",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/places",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "places"
          ]
        },
        "description": "Find visible HelloTracks places by name or place IDs for use in job planning.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\",\n  \"place_ids\": \"\",\n  \"max_results\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hello_tracks_update_job",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/job",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "job"
          ]
        },
        "description": "Partially update the editable details of one existing HelloTracks job.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"date\": \"\",\n  \"notes\": \"\",\n  \"title\": \"\",\n  \"job_id\": \"\",\n  \"address\": \"\",\n  \"contact\": {},\n  \"place_id\": \"\",\n  \"priority\": 0,\n  \"external_id\": \"\",\n  \"time_window\": {},\n  \"assignee_username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hello_tracks_upsert_job",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upsert/job",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upsert",
            "job"
          ]
        },
        "description": "Create a HelloTracks job, or update the existing job when the supplied external ID already matches one.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"date\": \"\",\n  \"notes\": \"\",\n  \"title\": \"\",\n  \"address\": \"\",\n  \"contact\": {},\n  \"place_id\": \"\",\n  \"priority\": 0,\n  \"external_id\": \"\",\n  \"time_window\": {},\n  \"assignee_username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}