Skip to main content
Glama

Fulcra Context MCP

get_metric_time_series

Retrieve precise time-series data for a specific Fulcra metric within defined start and end times. Supports custom sample rates, null replacements, and advanced calculations like max, min, delta, and rolling mean.

Instructions

Get user's time-series data for a single Fulcra metric.

Covers the time starting at start_time (inclusive) until end_time (exclusive). Result timestamps will include tz. Always translate timestamps to the user's local tz when this is known. Args: metric_name: The name of the time-series metric to retrieve. Use `get_metrics_catalog` to find available metrics. start_time: The starting time period (inclusive). Must include tz (ISO8601). end_time: The ending time (exclusive). Must include tz (ISO8601). sample_rate: Optional. The number of seconds per sample. Default is 60. Can be smaller than 1. replace_nulls: Optional. When true, replace all NA with 0. Default is False. calculations: Optional. A list of additional calculations to perform for each time slice. Not supported on cumulative metrics. Options: "max", "min", "delta", "mean", "uniques", "allpoints", "rollingmean". Returns: A JSON string representing a list of data points for the metric. For time ranges where data is missing, the values will be NA unless replace_nulls is true.

Input Schema

NameRequiredDescriptionDefault
calculationsNo
end_timeYes
metric_nameYes
replace_nullsNo
sample_rateNo
start_timeYes

Input Schema (JSON Schema)

{ "properties": { "calculations": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "null" } ], "default": null, "title": "Calculations" }, "end_time": { "format": "date-time", "title": "End Time", "type": "string" }, "metric_name": { "title": "Metric Name", "type": "string" }, "replace_nulls": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ], "default": false, "title": "Replace Nulls" }, "sample_rate": { "anyOf": [ { "type": "number" }, { "type": "null" } ], "default": 60, "title": "Sample Rate" }, "start_time": { "format": "date-time", "title": "Start Time", "type": "string" } }, "required": [ "metric_name", "start_time", "end_time" ], "type": "object" }
Install Server

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