Skip to content
VS Code

tableau graphql mcp for VS Code

io.github.tdries/tableau-graphql-mcp

Ask any Tableau lineage question, in any MCP client, through the Tableau Metadata API.

client:VS Code transport:stdio runtime:pypi

Install tableau graphql mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "tableau-server",
      "description": "TABLEAU_SERVER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "tableau-site-content-url",
      "description": "TABLEAU_SITE_CONTENT_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "tableau-pat-name",
      "description": "TABLEAU_PAT_NAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "tableau-pat-secret",
      "description": "TABLEAU_PAT_SECRET",
      "password": true
    }
  ],
  "servers": {
    "tableau-graphql-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "tableau-graphql-mcp"
      ],
      "env": {
        "TABLEAU_SERVER": "${input:tableau-server}",
        "TABLEAU_SITE_CONTENT_URL": "${input:tableau-site-content-url}",
        "TABLEAU_PAT_NAME": "${input:tableau-pat-name}",
        "TABLEAU_PAT_SECRET": "${input:tableau-pat-secret}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

tableau graphql mcp in other clients