Track parcels across 2,500+ carriers and 3PLs: live delivery status, event history, carrier lookup.
Inferido de los transportes que declara este listado (streamable-http). Que un cliente no aparezca aquí no significa que se haya descartado: simplemente Forge no puede confirmarlo.
La verificación confirma la identidad del publicador (la propiedad del repo), no la seguridad del código. El análisis de seguridad cubre los CVE conocidos y los scripts de instalación sospechosos.
Leído de un handshake MCP real initialize → tools/list contra el endpoint declarado. No se invocó ninguna herramienta: tools/list es la llamada de introspección de solo lectura que el protocolo define para esto. Refleja lo que el servidor anunciaba en ese momento; un endpoint alojado no está fijado a ninguna versión y puede cambiar sin avisar.
https://api.ship24.com/mcp12 herramientas · 99 mscreate_trackerCreates a new tracker for a tracking number. Use when the user explicitly wants ongoing monitoring or webhook updates; results arrive asynchronously — for immediate results use track or search_tracking. Idempotent: same parameters reuse the existing tracker; any field change creates a new one. Subs…Creates a new tracker for a tracking number. Use when the user explicitly wants ongoing monitoring or webhook updates; results arrive asynchronously — for immediate results use track or search_tracking. Idempotent: same parameters reuse the existing tracker; any field change creates a new one. Subs…
| Parámetro | Tipo | Descripción |
|---|---|---|
| trackingNumber* | string | Tracking number to monitor. |
| shipmentReference | string | Internal reference for the shipment. |
| clientTrackerId | string | Your unique identifier for this tracker, for lookup via searchBy=clientTrackerId. |
| originCountryCode | string | Origin country code (ISO alpha-2, e.g. US). |
| destinationCountryCode | string | Destination country code (ISO alpha-2). |
| destinationPostCode | string | Destination postal/ZIP code. |
| shippingDate | string | Date the package was shipped (YYYY-MM-DD or ISO 8601). |
| courierCode | array | Courier codes for this tracker (max 3). Use get_couriers for valid codes. IMPORTANT: Check each courier's requiredFields array — any listed fields should be pr… |
| courierName | string | Courier name (informational). |
| trackingUrl | string | Courier tracking URL. |
| orderNumber | string | Associated order number. |
| settings | object | — |
list_trackersReturns a paginated list of all trackers. Supports offset (page/limit) or cursor-based pagination. Filter by subscription status with isSubscribed.Returns a paginated list of all trackers. Supports offset (page/limit) or cursor-based pagination. Filter by subscription status with isSubscribed.
| Parámetro | Tipo | Descripción |
|---|---|---|
| page | integer | Page number (1-indexed). |
| limit | integer | Results per page (max 500). |
| sort | — | Sort order by createdAt. 1 = ascending (oldest first, default), -1 = descending (newest first). |
bulk_create_trackersCreates up to 100 trackers in one request. Each tracker object accepts the same fields as create_tracker — see that tool for field details. Not fully idempotent: retrying a failed bulk request may partially create trackers. Returns counts of created, ignored (duplicate), and failed trackers plus pe…Creates up to 100 trackers in one request. Each tracker object accepts the same fields as create_tracker — see that tool for field details. Not fully idempotent: retrying a failed bulk request may partially create trackers. Returns counts of created, ignored (duplicate), and failed trackers plus pe…
| Parámetro | Tipo | Descripción |
|---|---|---|
| trackers* | array | Array of tracker objects to create (minimum 1, maximum 100). |
trackCreates a persistent tracker on the account AND returns full tracking results synchronously in one call (per-shipment plan). Idempotent: same payload reuses the existing tracker. Prefer search_tracking for one-off lookups when the per-call plan is available. If the returned shipment is still pendin…Creates a persistent tracker on the account AND returns full tracking results synchronously in one call (per-shipment plan). Idempotent: same payload reuses the existing tracker. Prefer search_tracking for one-off lookups when the per-call plan is available. If the returned shipment is still pendin…
| Parámetro | Tipo | Descripción |
|---|---|---|
| trackingNumber* | string | — |
| shipmentReference | string | — |
| clientTrackerId | string | — |
| originCountryCode | string | — |
| destinationCountryCode | string | — |
| destinationPostCode | string | — |
| shippingDate | string | — |
| courierCode | array | Courier codes for this tracker (max 3). Use get_couriers for valid codes. IMPORTANT: Check each courier's requiredFields array — any listed fields should be pr… |
| courierName | string | — |
| trackingUrl | string | — |
| orderNumber | string | — |
| settings | object | — |
get_trackerRetrieves a single tracker by trackerId (or clientTrackerId when searchBy is set). Returns tracker metadata only — use get_tracking_results for events and status.Retrieves a single tracker by trackerId (or clientTrackerId when searchBy is set). Returns tracker metadata only — use get_tracking_results for events and status.
| Parámetro | Tipo | Descripción |
|---|---|---|
| trackerId* | string | Ship24 trackerId, or clientTrackerId when searchBy="clientTrackerId". |
| searchBy | string | How to interpret trackerId: default is Ship24 trackerId, use "clientTrackerId" for your own reference. |
update_trackerPartially updates a tracker (PATCH). Only provided fields are changed. Common uses: toggling isSubscribed, correcting destination details, or setting a clientTrackerId.Partially updates a tracker (PATCH). Only provided fields are changed. Common uses: toggling isSubscribed, correcting destination details, or setting a clientTrackerId.
| Parámetro | Tipo | Descripción |
|---|---|---|
| trackerId* | string | The tracker to update (Ship24 trackerId or clientTrackerId). |
| searchBy | string | How to interpret trackerId: default is Ship24 trackerId, use "clientTrackerId" for your own reference. |
| isSubscribed | boolean | true to subscribe to webhooks, false to unsubscribe. |
| courierCode | array | Courier codes for this tracker (max 3). Use get_couriers for valid codes. IMPORTANT: Check each courier's requiredFields array — any listed fields should be pr… |
| originCountryCode | string | Origin country code (ISO alpha-2). Immutable once tracking data exists. |
| destinationCountryCode | string | Destination country code (ISO alpha-2). Immutable once tracking data exists. |
| destinationPostCode | string | — |
| shippingDate | string | Ship date (YYYY-MM-DD or ISO 8601). Immutable once tracking data exists. |
| settings | object | — |
get_tracking_resultsReturns full tracking results for an existing tracker: metadata, shipment status, all events in order, and delivery statistics. Primary tool for "where is my package?" when you have a trackerId. statusMilestone values: pending | info_received | in_transit | out_for_delivery | failed_attempt | avail…Returns full tracking results for an existing tracker: metadata, shipment status, all events in order, and delivery statistics. Primary tool for "where is my package?" when you have a trackerId. statusMilestone values: pending | info_received | in_transit | out_for_delivery | failed_attempt | avail…
| Parámetro | Tipo | Descripción |
|---|---|---|
| trackerId* | string | Ship24 trackerId, or clientTrackerId when searchBy="clientTrackerId". |
| searchBy | string | How to interpret trackerId: default is Ship24 trackerId, use "clientTrackerId" for your own reference. |
search_tracking_by_numberReturns existing tracking results for a raw tracking number across trackers already on the account, without needing a trackerId. Free read: never creates a tracker and never triggers a new crawl. Responds 404 tracker_not_found if no tracker exists for that number — in that case use search_tracking…Returns existing tracking results for a raw tracking number across trackers already on the account, without needing a trackerId. Free read: never creates a tracker and never triggers a new crawl. Responds 404 tracker_not_found if no tracker exists for that number — in that case use search_tracking…
| Parámetro | Tipo | Descripción |
|---|---|---|
| trackingNumber* | string | The raw shipment tracking number to search for (e.g. 1Z999AA10123456784). |
get_couriersReturns the list of all couriers supported by Ship24, including their unique courier codes, human-readable names, and any special tracking requirements. Use this tool to discover valid courierCode values before creating or updating trackers, or to help identify which courier handles a particular tr…Returns the list of all couriers supported by Ship24, including their unique courier codes, human-readable names, and any special tracking requirements. Use this tool to discover valid courierCode values before creating or updating trackers, or to help identify which courier handles a particular tr…
No se publicó ningún esquema de entrada para esta herramienta.
search_trackingDefault tool for one-off tracking lookups ('track X', 'where is my package'). Synchronous per-call plan endpoint: returns full results (status, events, statistics) immediately and creates NO tracker on the account. Billed per call. Requires an active per-call plan — if it fails with no_active_subsc…Default tool for one-off tracking lookups ('track X', 'where is my package'). Synchronous per-call plan endpoint: returns full results (status, events, statistics) immediately and creates NO tracker on the account. Billed per call. Requires an active per-call plan — if it fails with no_active_subsc…
| Parámetro | Tipo | Descripción |
|---|---|---|
| trackingNumber* | string | Tracking number to look up. 5-50 alphanumeric characters, hyphens, underscores, dots, or slashes. |
| originCountryCode | string | Origin country code (ISO alpha-2). |
| destinationCountryCode | string | Destination country code (ISO alpha-2). |
| destinationPostCode | string | Destination postal/ZIP code. |
| shippingDate | string | Date the package was shipped (YYYY-MM-DD or ISO 8601). |
| courierCode | array | Courier codes for this tracker (max 3). Use get_couriers for valid codes. IMPORTANT: Check each courier's requiredFields array — any listed fields should be pr… |
resend_webhooksReplays all webhook events for a tracker. Use when your endpoint missed or failed to process previous notifications. Terminates any in-flight webhook delivery for this tracker and invalidates its existing webhook payload records before regenerating and resending them — do not call repeatedly in qui…Replays all webhook events for a tracker. Use when your endpoint missed or failed to process previous notifications. Terminates any in-flight webhook delivery for this tracker and invalidates its existing webhook payload records before regenerating and resending them — do not call repeatedly in qui…
| Parámetro | Tipo | Descripción |
|---|---|---|
| trackerId* | string | Ship24 trackerId, or clientTrackerId when searchBy="clientTrackerId". |
| searchBy | string | How to interpret trackerId: default is Ship24 trackerId, use "clientTrackerId" for your own reference. |
download_webhook_historyRetrieves the full webhook push history for a tracker. Returns metadata (trackingNumber, trackerId, clientTrackerId, webhookUrl, lastSuccessfulPushAt, lastFailedPushAt) and a list of all sent or failed pushes with status, pushTimestamp, requestBody, responseBody, responseHeaders, and responseStatus…Retrieves the full webhook push history for a tracker. Returns metadata (trackingNumber, trackerId, clientTrackerId, webhookUrl, lastSuccessfulPushAt, lastFailedPushAt) and a list of all sent or failed pushes with status, pushTimestamp, requestBody, responseBody, responseHeaders, and responseStatus…
| Parámetro | Tipo | Descripción |
|---|---|---|
| trackerId* | string | Ship24 trackerId, or clientTrackerId when searchBy="clientTrackerId". |
| searchBy | string | How to interpret trackerId: default is Ship24 trackerId, use "clientTrackerId" for your own reference. |
12 de 12 herramientas publicaron una descripción.
Los nombres y descripciones de las herramientas los escribe el publicador y se muestran literalmente como texto inerte. Son las cadenas que un cliente MCP pasa al modelo, así que Forge las analiza en busca de patrones de inyección de prompts — cualquier hallazgo aparece junto al análisis de seguridad de arriba. «Privilegiada» es una coincidencia de palabra clave en el nombre de la herramienta, no una auditoría de lo que hace: un nombre inofensivo puede hacer cualquier cosa.
Track parcels across 2,500+ carriers and 3PLs: live delivery status, event history, carrier lookup.
Los nombres enlazados abren el índice de Forge con todas las entradas que se observó que exponen esa herramienta. Ver todas las herramientas indexadas.
Esta entrada no publica ningún paquete de npm, así que Forge no tiene un árbol de dependencias para ella. Es una carencia de cobertura, no una afirmación de que no tenga dependencias.