Tableau MCP 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. Tableau MCP is available as a managed service at https://mcp.tableau.com. It uses OAuth 2.1 so every user signs in with their own Tableau Cloud identity, and all existing per-user permissions are enforced a
Add this skill
npx mdskills install tableau/tableau-mcp@tableau? Sign in with GitHub to claim this listing.Enterprise-grade MCP server with excellent Tableau integration, comprehensive deployment options, and strong documentation
1 # Tableau MCP23[](https://www.tableau.com/support-levels-it-and-developer-tools)45[](https://github.com/tableau/tableau-mcp/actions/workflows/ci.yml)67[](https://www.npmjs.com/package/@tableau/mcp-server)89## Overview1011Tableau MCP is a suite of developer primitives, including tools, resources and prompts, that will12make it easier for developers to build AI applications that integrate with Tableau.1314## Official Documentation1516https://tableau.github.io/tableau-mcp/1718## Getting Started1920### Hosted Tableau MCP (Recommended for Tableau Cloud)2122Tableau MCP is available as a managed service at **`https://mcp.tableau.com`**. It uses OAuth 2.1 so every user signs in with their own Tableau Cloud identity, and all existing per-user permissions are enforced automatically.2324Point any MCP-compatible client at `https://mcp.tableau.com` and complete the OAuth sign-in flow when prompted.2526See [Popular Client Integrations](https://tableau.github.io/tableau-mcp/docs/hosted-tableau-mcp/client-integrations) for step-by-step setup instructions for Slack, Claude, ChatGPT, and other common AI clients.2728> **Tableau Server customers** and Cloud customers who require self-hosted infrastructure should see the [Enterprise Deployment](https://tableau.github.io/tableau-mcp/docs/enterprise) and [Self-Hosted Getting Started](https://tableau.github.io/tableau-mcp/docs/getting-started) guides.2930### Self-Hosted / Local (npx)3132The quickest way to run Tableau MCP locally. Requires [Node.js](https://nodejs.org/en/download) 22.7.5 or later — no cloning or building needed. Configure your AI tool (MCP client) with:3334```json35{36 "mcpServers": {37 "tableau": {38 "command": "npx",39 "args": ["-y", "@tableau/mcp-server@latest"],40 "env": {41 "SERVER": "https://my-tableau-server.com",42 "SITE_NAME": "my_site",43 "PAT_NAME": "my_pat",44 "PAT_VALUE": "pat_value"45 }46 }47 }48}49```5051For Docker, building from source, and other self-hosted options, see the [Getting Started guide](https://tableau.github.io/tableau-mcp/docs/getting-started).5253## Deploy to Heroku5455[](https://www.heroku.com/deploy?template=https://github.com/tableau/tableau-mcp)5657## Example Prompts to Client5859#### Prompt #1: Querying Data6061```62For the Superstore Datasource, what are the top 5 states with the most sales in 2025?63```6465#### Response6667```68Based on the Superstore Datasource, here are the top 5 states with the most sales in 2025:69 1. California - $146,388.3470 2. New York - $93,922.9971 3. Washington - $65,539.9072 4. Texas - $43,421.7673 5. Pennsylvania - $42,688.3174California leads by a significant margin with over $146,000 in sales, followed by New York with nearly $94,000. These two states alone account for a substantial portion of the total sales across the top 5 states.75```7677#### Prompt #2: Content Exploration7879```80Find me the most viewed workbook within the last year.81```8283#### Response8485```86The most viewed workbook within the last year is:8788Global Connections89- Owner: John Doe90- Project: Marketing91- Views in last year: 52392- Last Modified: September 2, 202593- Workbook ID: 111fb672-9401-4913-a167-17b3d89a3e4f94```9596#### Prompt #3: Getting a View9798```99Show me the "Economy" view in the "Finances" project.100```101102#### Response103104105
Full transparency — inspect the skill content before installing.