Tableau MCP Server

Helping agents see and understand data.

Remote serverstreamable-http

What is the Tableau MCP MCP server?

Most developer tooling work still happens through a UI a human drives. Tableau MCP MCP server moves it into the conversation instead. Helping agents see and understand data.

The short version

Tableau MCP is a suite of developer primitives, including tools, resources and prompts, that will make it easier for developers to build AI applications that integrate with Tableau.

The tools it exposes

The server publishes 3 tools. What each one is for:

  • Owner — John Doe
  • Project — Marketing
  • Response — The Response tool exposed by this server

Getting it running

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

What it needs from you

Configuration is passed through the environment: SERVER, SITE_NAME, PAT_NAME, PAT_VALUE. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

How it compares

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Tableau MCP's toolset — Owner, Project, Response — is a fair guide to whether it matches your workflow. It is maintained by tableau; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Tableau MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Things to watch

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
OwnerJohn Doe
ProjectMarketing
ResponseThe Response tool exposed by this server.

How to install the Tableau MCP MCP server

{
  "mcpServers": {
    "tableau": {
      "command": "npx",
      "args": ["-y", "@tableau/mcp-server@latest"],
      "env": {
        "SERVER": "https://my-tableau-server.com",
        "SITE_NAME": "my_site",
        "PAT_NAME": "my_pat",
        "PAT_VALUE": "pat_value"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
SERVERConfiguration value read at startup.Optional
SITE_NAMEConfiguration value read at startup.Optional
PAT_NAMEConfiguration value read at startup.Optional
PAT_VALUEConfiguration value read at startup.Optional

Example prompts to try

  • Use Tableau MCP to Owner.
  • Use Tableau MCP to Project.
  • Use Tableau MCP to Response.

Frequently asked questions

It connects Tableau MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 3 tools (Owner, Project, Response) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Tableau MCP directly.