write_data
Write time-series data to an InfluxDB Cloud bucket using **line protocol** format.
Each line represents a data point with measurement, optional tags, fields, and an optional timestamp.
Line protocol format: `measurement,tag1=val1 field1=val2 timestamp`.
run_task
Manually trigger a task run outside of its normal schedule. Optionally specify a time to simulate the scheduled execution.
create_bucket
Create a new bucket in the organization for storing time-series data.
A bucket is a named location with a configurable retention period that determines how long data is kept.
delete_secrets
Delete one or more secrets from the organization by their keys.
list_authorizations
List all API token authorizations in the organization. Each authorization contains permissions that define what the token can access.
list_labels
List all labels in the organization. Labels can be applied to buckets, tasks, dashboards, and other resources for grouping and filtering.
list_dashboards
List all dashboards in the organization. Dashboards contain cells with configurable queries and visualization types for monitoring time-series data.
get_telegraf
Retrieve a specific Telegraf configuration by ID, including the full TOML configuration content.
list_dbrps
List all database/retention policy (DBRP) mappings for v1 compatibility.
DBRP mappings map legacy InfluxDB 1.x database and retention policy pairs to InfluxDB v2 buckets, enabling v1-compatible tools like Grafana to work with InfluxDB Cloud.
update_bucket
Update an existing bucket's name, description, or retention period.
delete_data
Delete time-series data points from an InfluxDB Cloud bucket within a specified time range.
Optionally filter by a predicate expression to target specific measurements or tag values.
create_authorization
Create a new API token with specific permissions. The token value is only available in the response immediately after creation.
Permissions cannot be modified after creation.
list_organizations
List all organizations accessible to the current API token. An organization is a workspace for a group of users, and all resources belong to an organization.
get_task
Retrieve details of a specific task by its ID, including the Flux script and scheduling configuration.
update_label
Update an existing label's name, color, or description.
delete_bucket
Permanently delete a bucket and all of its stored time-series data.
delete_dashboard
Permanently delete a dashboard and all its cells.
list_notification_rules
List all notification rules in the organization. Notification rules check data in the statuses measurement and send messages to notification endpoints when conditions are met.
list_buckets
List all buckets in the organization. Buckets are named storage locations for time-series data with configurable retention periods.
Supports filtering by name and pagination.
create_telegraf
Create a new Telegraf agent configuration. The configuration should be in TOML format and define input, processor, and output plugins.
update_telegraf
Update an existing Telegraf configuration's name, description, or TOML content.
get_organization_members
List all members of a specific organization, including their roles and status.
list_telegrafs
List all Telegraf agent configurations in the organization. Telegraf configurations define how the Telegraf agent collects, processes, and outputs data.
list_checks
List all monitoring checks in the organization. Checks query data and assign a status level (ok, info, warn, crit) based on specific conditions.
Supports threshold checks and deadman checks.
create_dashboard
Create a new dashboard for visualizing time-series data.
list_tasks
List all scheduled Flux tasks in the organization. Tasks are scheduled Flux scripts that run on a defined frequency to process, transform, or downsample data.
update_dashboard
Update an existing dashboard's name or description.
delete_authorization
Permanently delete an API token authorization. Any applications using this token will lose access.
delete_telegraf
Permanently delete a Telegraf agent configuration.
update_authorization
Update an authorization's description or toggle its status between active and inactive.
Permissions cannot be changed after creation.
list_secrets
List all secret keys stored for the organization. Only the keys are returned, not the values.
Secrets are stored securely using Vault and can be referenced in Flux scripts.
create_dbrp
Create a new DBRP mapping to enable v1-compatible queries against an InfluxDB Cloud bucket. Maps a legacy database/retention policy pair to a v2 bucket.
query_data
Execute a **Flux** query against InfluxDB Cloud and return the results.
Flux is a functional scripting language that supports complex transformations, aggregations, joins, and custom functions.
Results are returned as CSV-formatted data.
update_task
Update an existing task's name, description, Flux script, schedule, or status. Can be used to activate/deactivate a task.
delete_task
Permanently delete a scheduled Flux task.
delete_dbrp
Delete a DBRP mapping. v1-compatible tools using this mapping will no longer be able to access the bucket.
get_task_runs
List recent runs for a specific task, including their status, scheduled time, and completion details.
list_notification_endpoints
List all notification endpoints in the organization. Notification endpoints define where alert messages are sent (HTTP, Slack, PagerDuty).
create_label
Create a new label for organizing and grouping InfluxDB resources.
create_task
Create a new scheduled Flux task. Provide a Flux script and either a cron expression or an interval schedule.
Common use cases include downsampling, data aggregation, and triggering external actions.
upsert_secrets
Add or update one or more secrets for the organization. Provide key-value pairs where each key is the secret name and each value is the secret content.
Secrets can be referenced in Flux scripts using `secrets.get()`.
delete_label
Permanently delete a label. The label will be removed from all associated resources.