You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tableau MCP supports configuration on a per-site basis via REST API. When a Tableau MCP user is authenticated to a given site, the site's configuration is fetched and applied to their session such that each setting will override any current value set by the Tableau MCP server.
8
+
9
+
In order to use site settings:
10
+
- Only available in Tableau versions 2026.2 or higher.
11
+
- Site settings must be enabled by the Tableau MCP server, see [`ENABLE_MCP_SITE_SETTINGS`](env-vars.md#enable_mcp_site_settings).
12
+
13
+
## Configuring Site Settings
14
+
15
+
Only site and server administrators are able to configure Tableau MCP site settings.
16
+
Not every Tableau MCP configuration variable is overridable with site settings, only the ones listed as [Site Overridable Variables](#site-overridable-variables).
17
+
18
+
When creating or updating site settings via REST API:
19
+
- To use a variable's default value or clear limits and bounds set by the Tableau MCP server, you can provide an empty string as the override value.
20
+
- To remove an override variable from the list of site settings and restore its value back to what is set by the Tableau MCP server,
21
+
you can `POST` the current list of site settings minus the variable you want to remove or include the variable in a `PUT` request with a null value or omit the value property entirely.
22
+
23
+
:::warning
24
+
25
+
When configuring site settings, make sure to validate your overrides have been applied successfully.
26
+
Tableau MCP will ignore any overrides if it does not recognize the variable being overriden, or if the override value is invalid.
27
+
28
+
You might not see changes take immediate effect due to caching, see [`MCP_SITE_SETTINGS_CHECK_INTERVAL_IN_MINUTES`](env-vars.md#mcp_site_settings_check_interval_in_minutes).
0 commit comments