@tableau/mcp-server 2.1.0 → 2.7.4
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.combined.md +1 -0
- package/README.desktop.md +1 -0
- package/SECURITY.md +1 -1
- package/build/index.js +335 -119
- package/build/index.js.map +4 -4
- package/build/telemetry/tracing.js +2 -3
- package/build/telemetry/tracing.js.map +4 -4
- package/build/web/apps/dist/mcp-app.html +86 -0
- package/package.json +5 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tableau/mcp-server",
|
|
3
3
|
"description": "Helping agents see and understand data.",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.7.4",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/tableau/tableau-mcp.git"
|
|
@@ -24,6 +24,8 @@
|
|
|
24
24
|
},
|
|
25
25
|
"scripts": {
|
|
26
26
|
"build": "tsx src/scripts/build.ts",
|
|
27
|
+
"build:desktop": "tsx src/scripts/build.ts --variant desktop",
|
|
28
|
+
"build:combined": "tsx src/scripts/build.ts --variant combined",
|
|
27
29
|
"build:dev": "tsx src/scripts/build.ts --dev",
|
|
28
30
|
"build:docker": "docker build -t tableau-mcp .",
|
|
29
31
|
":build:mcpb": "npx -y @anthropic-ai/mcpb pack . tableau-mcp.mcpb",
|
|
@@ -54,6 +56,7 @@
|
|
|
54
56
|
"docs:start": "npm run start --prefix docs"
|
|
55
57
|
},
|
|
56
58
|
"dependencies": {
|
|
59
|
+
"@modelcontextprotocol/ext-apps": "^1.7.2",
|
|
57
60
|
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
58
61
|
"@zodios/core": "^10.9.6",
|
|
59
62
|
"cookie-parser": "^1.4.7",
|
|
@@ -95,6 +98,7 @@
|
|
|
95
98
|
"tsx": "^4.21.0",
|
|
96
99
|
"typescript": "^5.8.3",
|
|
97
100
|
"typescript-eslint": "^8.31.1",
|
|
101
|
+
"vite-plugin-singlefile": "^2.3.3",
|
|
98
102
|
"vitest": "^3.1.3"
|
|
99
103
|
},
|
|
100
104
|
"engines": {
|