Skip to content

Example usage

Globe Tracker utilizes the Flowcore MCP Server for data access and management. This guide will help you set up and start using the MCP Server.

Check the flowcore-io documentation for setting up the MCP Server in Cursor:

Flowcore MCP Server

Flowtypes are the main entities in the Flowcore platform.

I want to see the flow types that are available in the example-data datacore for the globe-tracker-aps tenant.
The available flow types in the example-data data core for the globe-tracker-aps tenant are:
asset.0 – Assets data
genset-data.0 – Genset data
push-results.0 – Push results
reefer-data.0 – Reefer data
sensordata.0 – Sensor data
If you need more details about any of these flow types or want to see their event types, just let me know!
Please show me some example data from the asset.0 flowtype
Here are some example events from the asset.0 flow type (event type: created.0) in the example-data data core for the globe-tracker-aps tenant:
name: ASSET-80050
id: 85e5ae99-f722-4633-b40e-48eeff445008
assetTags: REEFER, CARRIER
ownerId: c29a854d-b98f-4ecc-ad18-ecfb91025067
whenCreated: 2017-06-13T14:39:52.635Z
whenUpdated: 2020-08-13T00:10:04.125Z
name: STRU581950-8
id: 89249552-160e-45c0-91e7-ca0c8eb173c0
assetTags: REEFER, TK, MP4000, MP4000
ownerId: c29a854d-b98f-4ecc-ad18-ecfb91025067
whenCreated: 2015-01-27T13:27:58.437Z
whenUpdated: 2015-01-29T12:41:42.830Z
name: ASSET-80049
id: 3f16d4c6-adeb-45e5-a539-4f989ce612ed
assetTags: REEFER, TK
ownerId: c29a854d-b98f-4ecc-ad18-ecfb91025067
whenCreated: 2017-06-13T14:38:07.842Z
whenUpdated: 2017-06-13T14:39:03.751Z
If you want to see more details or other event types, let me know!
Give it to me as json format and also please give me a typescript type definition for the data.
[
{
"name": "ASSET-80050",
"id": "85e5ae99-f722-4633-b40e-48eeff445008",
"assetTags": "REEFER,CARRIER",
"ownerId": "c29a854d-b98f-4ecc-ad18-ecfb91025067",
"whenCreated": "2017-06-13T14:39:52.635Z",
"whenUpdated": "2020-08-13T00:10:04.125Z"
},
{
"name": "STRU581950-8",
"id": "89249552-160e-45c0-91e7-ca0c8eb173c0",
"assetTags": "REEFER,TK,MP4000,MP4000",
"ownerId": "c29a854d-b98f-4ecc-ad18-ecfb91025067",
"whenCreated": "2015-01-27T13:27:58.437Z",
"whenUpdated": "2015-01-29T12:41:42.830Z"
},
{
"name": "ASSET-80049",
"id": "3f16d4c6-adeb-45e5-a539-4f989ce612ed",
"assetTags": "REEFER,TK",
"ownerId": "c29a854d-b98f-4ecc-ad18-ecfb91025067",
"whenCreated": "2017-06-13T14:38:07.842Z",
"whenUpdated": "2017-06-13T14:39:03.751Z"
}
]
type AssetEvent = {
name: string;
id: string;
assetTags: string; // Comma-separated tags
ownerId: string;
whenCreated: string; // ISO date string
whenUpdated: string; // ISO date string
};

Please note that the results given here will vary from your own as it depends on which data you have access to. The MCP Server will only show you the data that you have access to and this is tied to your tenant.

Please show me the latest location records for the asset with the id 85e5ae99-f722-4633-b40e-48eeff445008
The latest location records for the asset with the id 85e5ae99-f722-4633-b40e-48eeff445008 are:
[
{
"id": 3015505656,
"ownerId": "867cdd11-4ac8-11f0-b45c-1fe2f8ac0132",
"assetId": "85e5ae99-f722-4633-b40e-48eeff445008",
"whenCreated": "2025-06-16T15:24:21Z",
"latitude": 51.87741,
"longitude": 4.42136,
"altitude": 13,
"heading": 93,
"zoneId": "z91313882"
},
{
"id": 3015505655,
"ownerId": "867cdd11-4ac8-11f0-b45c-1fe2f8ac0132",
"assetId": "85e5ae99-f722-4633-b40e-48eeff445008",
"whenCreated": "2025-06-16T15:19:00Z",
"latitude": 64.139488,
"longitude": -21.838653,
"altitude": 170,
"speed": 3.704,
"heading": 159
},
{
"id": 3015505657,
"ownerId": "867cdd11-4ac8-11f0-b45c-1fe2f8ac0132",
"assetId": "85e5ae99-f722-4633-b40e-48eeff445008",
"whenCreated": "2025-06-16T15:34:20Z",
"latitude": 51.87741,
"longitude": 4.4214,
"altitude": 10,
"speed": 16.668,
"heading": 168,
"zoneId": "z91313882"
}
]