Skip to main content
The Oviond MCP server exposes 188 tools across 29 groups. Most map to a single REST operation; a few chain several. Tool names are verb-first — create_client, list_reports, add_data_widget — so an agent can guess the right one from the action. Every tool also carries a title and read-only / destructive hints, so a client can show what a tool will do before it runs.

Tool catalog

Account

Activity

API keys

Archive

Assets

Automations

Billing

Branding

Calculated metrics

Clients

Company

Custom data

Datasources

Domains

Email

Exports

Folders

Goals

Media

Notifications

Pages

PDF

Reports

Templates

Themes

Users

Widgets

Workflows

🔒 = flagged destructive, so a client can prompt before running it.

Conventions

  • Identifiers — calls return IDs the agent chains into later calls. It is instructed to refer to records by name in chat, never by ID.
  • Multi-tenancy — every call is scoped to the authenticated account. You never pass an account_id.
  • Discovery firstdatasources, then describe_datasource, before configuring a data widget: the second returns that datasource’s data views, metrics, dimensions and required settings.
  • Metrics and dimensions are objects — pass [{ "value": "clicks" }], not ["clicks"]. Only value is required; Oviond fills in the rest from the catalog. The same shape is used by the widget, goal and calculated-metric tools.
  • One tool per widget typeadd_data_widget for a datasource-backed widget, and add_calculated_metric_widget, add_custom_data_widget, add_goal_widget and add_static_value_widget for the four sources that aren’t a platform. Each takes only the fields its type has, and each has a matching update_ tool.
  • Data is fetched server-side after a widget is written. refresh_widgets or refresh_report force it. Reading it back is get_widget_data, which waits briefly for in-flight fetches and returns each widget’s state plus its rows — up to 200 per widget.

Reference

Each tool wraps an Oviond REST operation. For exact parameters and response shapes, see the API Reference.