@tableau/mcp-server 1.8.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/CODE_OF_CONDUCT.md +105 -0
- package/CONTRIBUTING.md +74 -0
- package/LICENSE.txt +207 -0
- package/README.md +40 -0
- package/SECURITY.md +7 -0
- package/build/index.js +8591 -0
- package/build/index.js.map +7 -0
- package/package.json +89 -0
package/package.json
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@tableau/mcp-server",
|
|
3
|
+
"description": "An MCP server for Tableau, providing a suite of tools that will make it easier for developers to build AI-applications that integrate with Tableau.",
|
|
4
|
+
"version": "1.8.1",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/tableau/tableau-mcp.git"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://github.com/tableau/tableau-mcp",
|
|
10
|
+
"bugs": "https://github.com/tableau/tableau-mcp/issues",
|
|
11
|
+
"author": "Tableau",
|
|
12
|
+
"type": "module",
|
|
13
|
+
"license": "Apache-2.0",
|
|
14
|
+
"keywords": [
|
|
15
|
+
"tableau",
|
|
16
|
+
"mcp"
|
|
17
|
+
],
|
|
18
|
+
"bin": {
|
|
19
|
+
"tableau-mcp-server": "./build/index.js"
|
|
20
|
+
},
|
|
21
|
+
"scripts": {
|
|
22
|
+
":build": "npx rimraf ./build && esbuild src/index.ts --bundle --packages=external --platform=node --format=esm --outdir=build --sourcemap",
|
|
23
|
+
"build": "run-s :build exec-perms",
|
|
24
|
+
"build:watch": "npm run :build -- --watch",
|
|
25
|
+
"build:docker": "docker build -t tableau-mcp .",
|
|
26
|
+
":build:mcpb": "npx @anthropic-ai/mcpb pack . tableau-mcp.mcpb",
|
|
27
|
+
"build:mcpb": "run-s build:manifest:script build:manifest :build:mcpb",
|
|
28
|
+
"build:manifest": "node build/scripts/createClaudeMcpBundleManifest.mjs",
|
|
29
|
+
"build:manifest:script": "esbuild src/scripts/createClaudeMcpBundleManifest.ts --bundle --platform=node --format=esm --outdir=build/scripts --sourcemap=inline --out-extension:.js=.mjs",
|
|
30
|
+
"start:http": "node build/index.js",
|
|
31
|
+
"start:http:docker": "docker run -p 3927:3927 -i --rm --env-file env.list tableau-mcp",
|
|
32
|
+
"lint": "npm exec eslint",
|
|
33
|
+
"inspect": "npx @modelcontextprotocol/inspector --config config.json --server tableau",
|
|
34
|
+
":inspect:http": "npx @modelcontextprotocol/inspector --config config.http.json --server tableau",
|
|
35
|
+
"inspect:http": "run-p start:http :inspect:http",
|
|
36
|
+
"inspect:docker": "npx @modelcontextprotocol/inspector --config config.docker.json --server tableau",
|
|
37
|
+
"inspect:docker:http": "run-p start:http:docker :inspect:http",
|
|
38
|
+
"build:inspect": "run-s build inspect",
|
|
39
|
+
"build:inspect:docker": "run-s build:docker inspect:docker",
|
|
40
|
+
"build:inspect:docker:http": "run-s build:docker inspect:docker:http",
|
|
41
|
+
"exec-perms": "shx chmod +x build/*.js",
|
|
42
|
+
"test": "vitest --config ./vitest.config.ts",
|
|
43
|
+
"test:e2e": "vitest --config ./vitest.config.e2e.ts",
|
|
44
|
+
"coverage": "vitest run --config ./vitest.config.ts --coverage",
|
|
45
|
+
"version:major": "npm version major --no-git-tag-version",
|
|
46
|
+
"version:minor": "npm version minor --no-git-tag-version",
|
|
47
|
+
"version:patch": "npm version patch --no-git-tag-version"
|
|
48
|
+
},
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
51
|
+
"@zodios/core": "^10.9.6",
|
|
52
|
+
"cors": "^2.8.5",
|
|
53
|
+
"dotenv": "^16.5.0",
|
|
54
|
+
"express": "^5.1.0",
|
|
55
|
+
"fast-levenshtein": "^3.0.0",
|
|
56
|
+
"jose": "^6.0.12",
|
|
57
|
+
"ts-results-es": "^5.0.1",
|
|
58
|
+
"zod": "^3.24.3"
|
|
59
|
+
},
|
|
60
|
+
"devDependencies": {
|
|
61
|
+
"@anthropic-ai/mcpb": "^1.0.0",
|
|
62
|
+
"@eslint/eslintrc": "^3.3.1",
|
|
63
|
+
"@eslint/js": "^9.25.1",
|
|
64
|
+
"@modelcontextprotocol/inspector": "^0.16.6",
|
|
65
|
+
"@types/cors": "^2.8.19",
|
|
66
|
+
"@types/eslint__js": "^8.42.3",
|
|
67
|
+
"@types/express": "^5.0.3",
|
|
68
|
+
"@types/fast-levenshtein": "^0.0.1",
|
|
69
|
+
"@types/node": "^22.15.3",
|
|
70
|
+
"@typescript-eslint/eslint-plugin": "^8.31.1",
|
|
71
|
+
"@typescript-eslint/parser": "^8.31.1",
|
|
72
|
+
"@vitest/coverage-v8": "^3.1.3",
|
|
73
|
+
"esbuild": "^0.25.5",
|
|
74
|
+
"eslint": "^9.25.1",
|
|
75
|
+
"eslint-config-prettier": "^10.1.2",
|
|
76
|
+
"eslint-plugin-prettier": "^5.2.6",
|
|
77
|
+
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
78
|
+
"npm-run-all": "^4.1.5",
|
|
79
|
+
"prettier": "^3.5.3",
|
|
80
|
+
"rimraf": "^6.0.1",
|
|
81
|
+
"shx": "^0.4.0",
|
|
82
|
+
"typescript": "^5.8.3",
|
|
83
|
+
"typescript-eslint": "^8.31.1",
|
|
84
|
+
"vitest": "^3.1.3"
|
|
85
|
+
},
|
|
86
|
+
"engines": {
|
|
87
|
+
"node": ">=20"
|
|
88
|
+
}
|
|
89
|
+
}
|