-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathapp.json
More file actions
35 lines (35 loc) · 1023 Bytes
/
app.json
File metadata and controls
35 lines (35 loc) · 1023 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "Tableau MCP Server",
"description": "A Model Context Protocol (MCP) Server for interacting with the Tableau platform",
"repository": "https://github.com/tableau/tableau-mcp",
"success_url": "/tableau-mcp",
"keywords": ["node", "mcp", "tableau"],
"buildpacks": [
{
"url": "heroku/nodejs"
}
],
"env": {
"SERVER": {
"description": "The URL of the Tableau server to connect to",
"required": true
},
"SITE_NAME": {
"description": "The name of the Tableau site to connect to",
"required": true
},
"PAT_NAME": {
"description": "The name of the Tableau Personal Access Token to use for authentication",
"required": true
},
"PAT_VALUE": {
"description": "The value of the Tableau Personal Access Token to use for authentication",
"required": true
},
"TRANSPORT": {
"description": "The MCP transport type to use for the server. Must be http.",
"required": true,
"value": "http"
}
}
}