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.
Cursor configuration
Section titled “Cursor configuration”Check the flowcore-io documentation for setting up the MCP Server in Cursor:
List flow types
Section titled “List flow types”Flowtypes are the main entities in the Flowcore platform.
Prompt
Section titled “Prompt”I want to see the flow types that are available in the example-data datacore for the globe-tracker-aps tenant.Response
Section titled “Response”The available flow types in the example-data data core for the globe-tracker-aps tenant are:asset.0 – Assets datagenset-data.0 – Genset datapush-results.0 – Push resultsreefer-data.0 – Reefer datasensordata.0 – Sensor dataIf you need more details about any of these flow types or want to see their event types, just let me know!Get example data
Section titled “Get example data”Prompt
Section titled “Prompt”Please show me some example data from the asset.0 flowtypeResponse
Section titled “Response”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-80050id: 85e5ae99-f722-4633-b40e-48eeff445008assetTags: REEFER, CARRIERownerId: c29a854d-b98f-4ecc-ad18-ecfb91025067whenCreated: 2017-06-13T14:39:52.635ZwhenUpdated: 2020-08-13T00:10:04.125Zname: STRU581950-8id: 89249552-160e-45c0-91e7-ca0c8eb173c0assetTags: REEFER, TK, MP4000, MP4000ownerId: c29a854d-b98f-4ecc-ad18-ecfb91025067whenCreated: 2015-01-27T13:27:58.437ZwhenUpdated: 2015-01-29T12:41:42.830Zname: ASSET-80049id: 3f16d4c6-adeb-45e5-a539-4f989ce612edassetTags: REEFER, TKownerId: c29a854d-b98f-4ecc-ad18-ecfb91025067whenCreated: 2017-06-13T14:38:07.842ZwhenUpdated: 2017-06-13T14:39:03.751ZIf you want to see more details or other event types, let me know!Prompt
Section titled “Prompt”Give it to me as json format and also please give me a typescript type definition for the data.Response
Section titled “Response”[ { "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};Get latest location records for an asset
Section titled “Get latest location records for an asset”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.
Prompt
Section titled “Prompt”Please show me the latest location records for the asset with the id 85e5ae99-f722-4633-b40e-48eeff445008Response
Section titled “Response”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" }]