# Detrack — MCP server on mcp.ai > Connect your Detrack account and use 19 tools for internet of things straight from your AI agent. Connect with your own API key. Detrack is a delivery management software that offers real-time vehicle tracking, electronic proof of delivery, and automated customer notifications. By: mcp.ai · official Page: https://mcp.ai/detrack ## Connect (MCP protocol) Remote MCP endpoint (HTTP, streamable): https://api.mcp.ai/p_detrack?ms=1787293560000 Add it as a custom/remote MCP connector, then authenticate when prompted. ## REST API (no MCP client required) Every tool is also a REST endpoint, authed with a workspace API key. Discover: GET https://api.mcp.ai/api/detrack/_endpoints # public; lists every endpoint Call: POST https://api.mcp.ai/api/detrack/ Authorization: Bearer sk_live_… # create one at https://mcp.ai/settings/api-keys Content-Type: application/json Body: { …args } → { "ok": true, "tool": "", "result": { … } } ## Developer docs How to use (MCP or REST), markdown: https://mcp.ai/detrack/skill.md Postman collection (v2.1): https://mcp.ai/detrack/postman.json ## Tools - detrack_add_collection(do: string, date: string, zone?: string, items?: object[], phone?: string, address: string, assign_to?: string, notify_url?: string, collect_from?: string, instructions?: string, notify_email?: string, collection_time?: string) — Add a new collection job in Detrack. A collection is a pickup job where items are collected from a location. The Delivery Order (do) number must be unique per date. Include the country name in the add - detrack_create_bulk_depots(data: object[]) — Tool to create multiple depot locations in one request. Use when you need to create several depots at once. Each depot requires at least a name and an address that can be geocoded. Include country nam - detrack_create_depot(data: object) — Create a new depot in Detrack. A depot serves as a starting/ending point for delivery routes. Requires at least a name and an address that can be geocoded. The address should be complete and include t - detrack_delete_all_collections(date: string) — Tool to delete all collections in the account. Use when you need to purge every collection for a specific date after confirmation. - detrack_delete_all_deliveries(date: string) — Tool to delete all deliveries for a specific date. Use when you need to purge deliveries in bulk before scheduling new ones. - detrack_delete_delivery(items: object[]) — Tool to delete one or more deliveries by date and D.O. number. Use after confirming delivery entries to avoid accidental data loss (max 100 items per call). - detrack_delete_depots_bulk(data: object[]) — Tool to delete multiple depots in a single request. Use when you need to remove depots that are no longer needed. - detrack_delete_job_by_query(date?: string, type?: string, do_number: string) — Tool to delete a job by DO number using query parameters. Use when you need to delete a specific job by its DO number. Returns success status indicating whether the job was found and deleted. - detrack_edit_delivery(items: object[]) — Edit one or more existing deliveries by date and D.O. number. Use this tool to update delivery details such as address, recipient, phone, instructions, or vehicle assignment. The delivery must already - detrack_get_job_by_do_and_date(date: string, type?: string, do_number: string) — Tool to retrieve a specific job by its DO (Delivery Order) number and date. Use when you need to fetch detailed information about a specific delivery or collection job. Returns comprehensive job detai - detrack_get_job_by_query(date?: string, type?: string, do_number: string) — Tool to retrieve a single job by DO number using query parameters. Use when you need to fetch detailed information about a specific delivery or collection job. - detrack_list_depots(page?: integer, limit?: integer) — Tool to list all depot locations with pagination. Use when you need to retrieve depot information including addresses and coordinates. Supports pagination to handle large numbers of depots. - detrack_list_jobs_v2(date?: string, page?: integer, sort?: string, type?: string, limit?: integer, query?: string, status?: string, assign_to?: string, do_number?: string) — Tool to list jobs with pagination and filtering using Detrack API v2. Use when you need to retrieve jobs with filters by date, type, assign_to, status, DO number, or search query. Supports sorting and - detrack_search(q: object, page?: integer, limit?: integer, order?: string, offset?: integer) — Tool to search for deliveries, collections, or vehicles. Use after defining search criteria to retrieve matching jobs. - detrack_search_jobs(page?: integer, type?: string, limit?: integer, query?: string, status?: string, date_to?: string, assign_to?: string, date_from?: string) — Search jobs with advanced filters including date range, DO number, statuses, groups, vehicles, zones, and more. Use this to find specific jobs across multiple criteria using the v2 search API. - detrack_update_depots_bulk(data: object[]) — Update multiple depot locations in a single request. Use this to modify depot details such as address, contact information, or coordinates. Each depot is identified by its name or ID. This is more eff - detrack_view_all_collections(date: string) — View all collection jobs scheduled for a specific date in Detrack. Returns collection details including delivery order number, pickup address, status, tracking link, and items. Use this to retrieve al - detrack_view_all_deliveries(date: string) — Tool to view all deliveries for a specific date. Use when you need to retrieve all delivery jobs on a given date. - detrack_view_all_vehicles() — Retrieve all vehicles registered in your Detrack account. Returns complete fleet information including real-time location, speed, connection status, and vehicle details. Use this to get an overview of ## Example prompts - "What can I do in Detrack?" - "Show me a summary of my Detrack account" ## Links Docs: https://mcp.ai/docs/mcps/detrack Website: https://mcp.ai/mcps/detrack