@tableau/mcp-server 2.18.0 → 2.21.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -7
- package/build/features.json +3 -0
- package/build/index.js +152 -153
- package/build/index.js.map +4 -4
- package/build/web/apps/dist/mcp-app.html +50 -19
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Tableau MCP
|
|
1
|
+
# Tableau MCP
|
|
2
2
|
|
|
3
3
|
[](https://www.tableau.com/support-levels-it-and-developer-tools)
|
|
4
4
|
|
|
@@ -15,14 +15,21 @@ make it easier for developers to build AI applications that integrate with Table
|
|
|
15
15
|
|
|
16
16
|
https://tableau.github.io/tableau-mcp/
|
|
17
17
|
|
|
18
|
-
##
|
|
18
|
+
## Getting Started
|
|
19
19
|
|
|
20
|
-
###
|
|
20
|
+
### Hosted Tableau MCP (Recommended for Tableau Cloud)
|
|
21
21
|
|
|
22
|
-
|
|
23
|
-
- An MCP client e.g. Claude Desktop, Cursor, VS Code, MCP Inspector, etc.
|
|
22
|
+
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 automatically.
|
|
24
23
|
|
|
25
|
-
|
|
24
|
+
Point any MCP-compatible client at `https://mcp.tableau.com` and complete the OAuth sign-in flow when prompted.
|
|
25
|
+
|
|
26
|
+
See [Popular Client Integrations](https://tableau.github.io/tableau-mcp/hosted-tableau-mcp/client-integrations) for step-by-step setup instructions for Slack, Claude, ChatGPT, and other common AI clients.
|
|
27
|
+
|
|
28
|
+
> **Tableau Server customers** and Cloud customers who require self-hosted infrastructure should see the [Enterprise Deployment](https://tableau.github.io/tableau-mcp/enterprise/) and [Self-Hosted Getting Started](https://tableau.github.io/tableau-mcp/getting-started/) guides.
|
|
29
|
+
|
|
30
|
+
### Self-Hosted / Local (npx)
|
|
31
|
+
|
|
32
|
+
The 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:
|
|
26
33
|
|
|
27
34
|
```json
|
|
28
35
|
{
|
|
@@ -41,6 +48,8 @@ Standard config works in most MCP clients:
|
|
|
41
48
|
}
|
|
42
49
|
```
|
|
43
50
|
|
|
51
|
+
For Docker, building from source, and other self-hosted options, see the [Getting Started guide](https://tableau.github.io/tableau-mcp/getting-started/).
|
|
52
|
+
|
|
44
53
|
## Deploy to Heroku
|
|
45
54
|
|
|
46
55
|
[](https://www.heroku.com/deploy?template=https://github.com/tableau/tableau-mcp)
|
|
@@ -87,7 +96,7 @@ Global Connections
|
|
|
87
96
|
#### Prompt #3: Getting a View
|
|
88
97
|
|
|
89
98
|
```
|
|
90
|
-
Show me
|
|
99
|
+
Show me the "Economy" view in the "Finances" project.
|
|
91
100
|
```
|
|
92
101
|
|
|
93
102
|
#### Response
|