Tableau for VS Code
io.github.asklokesh/tableau-mcp-server
MCP server for Tableau API integration
client:VS Code
transport:stdio
runtime:pypi
Install Tableau in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "tableau-api-key",
"description": "TABLEAU_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "tableau-api-url",
"description": "TABLEAU_API_URL",
"password": true
}
],
"servers": {
"tableau-mcp-server": {
"type": "stdio",
"command": "uvx",
"args": [
"tableau-mcp-server"
],
"env": {
"TABLEAU_API_KEY": "${input:tableau-api-key}",
"TABLEAU_API_URL": "${input:tableau-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs