Skip to main content
Glama

Fulcra Context MCP

get_location_time_series

Retrieve a time series of user locations within a specified time range, with optional parameters like distance filtering, sampling rate, and reverse geocoding. Results include timestamps adjusted to the user's local time zone.

Instructions

Retrieve a time series of locations that the user was at. Result timestamps will include time zones. Always translate timestamps to the user's local tz when this is known.

Args: start_time: The start of the time range (inclusive), as an ISO 8601 string or datetime object. end_time: The end of the range (exclusive), as an ISO 8601 string or datetime object. change_meters: Optional. When specified, subsequent samples that are fewer than this many meters away will not be included. sample_rate: Optional. The length (in seconds) of each sample. Default is 900. reverse_geocode: Optional. When true, Fulcra will attempt to reverse geocode the locations and include the details in the results. Default is False. Returns: A JSON string representing a list of location data points.

Input Schema

NameRequiredDescriptionDefault
change_metersNo
end_timeYes
reverse_geocodeNo
sample_rateNo
start_timeYes

Input Schema (JSON Schema)

{ "properties": { "change_meters": { "anyOf": [ { "type": "number" }, { "type": "null" } ], "default": null, "title": "Change Meters" }, "end_time": { "format": "date-time", "title": "End Time", "type": "string" }, "reverse_geocode": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ], "default": false, "title": "Reverse Geocode" }, "sample_rate": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "default": 900, "title": "Sample Rate" }, "start_time": { "format": "date-time", "title": "Start Time", "type": "string" } }, "required": [ "start_time", "end_time" ], "type": "object" }

Other Tools from Fulcra Context MCP

Related Tools

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/fulcradynamics/fulcra-context-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server