# io.github.twilize5/tableaugen-mcp (npm · tableaugen-mcp)

Generate production-ready Tableau workbooks (.twb / .twbx) from natural language and a CSV.

- Trust score: 69/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-09-26

## Components

- npm · `tableaugen-mcp`: 69/100 (this document), [markdown](https://verifymcp.io/servers/twilize5-tableaugen-mcp/tableaugen-mcp.md), [page](https://verifymcp.io/servers/twilize5-tableaugen-mcp/tableaugen-mcp)

## Channel facts

- Registry: `npm`
- Package: `tableaugen-mcp`
- Version: `0.1.1`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-09-26.

- **Supply Chain Security**: 98/100
  - No malware found by supply-chain analysis.
  - No known CVEs affecting this package version or its production dependencies.
  - No install/post-install scripts declared.
  - 31 of 95 dependencies flagged as unhealthy.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 5 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 80/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 393 tokens (~78/item across 5 items; 5 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Tool Safety**: 75/100
  - No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.
  - 0 of 1 tool(s) whose name or description implies an irreversible operation declare an MCP destructiveHint annotation; "publish_to_cloud" implies "publish" and declares no destructiveHint at all, which the MCP spec reads as destructive by default.
  - An AI judge read all 5 captured unit(s) of tool text and found none that tries to manipulate the model reading it.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

**Unverified: 1 category.** A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### How do I install the io.github.twilize5/tableaugen-mcp server?

io.github.twilize5/tableaugen-mcp runs locally as an npm package, launched with npx -y tableaugen-mcp. Ready-made configuration for Claude, Cursor, VS Code, Codex and 5 more is on this page, copied from each client's own documentation.

### Claude

```bash
claude mcp add twilize5-tableaugen-mcp -- npx -y tableaugen-mcp
```

### Cursor

```json
{
  "mcpServers": {
    "twilize5-tableaugen-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "tableaugen-mcp"
      ]
    }
  }
}
```

### VS Code

```json
{
  "servers": {
    "twilize5-tableaugen-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "tableaugen-mcp"
      ]
    }
  }
}
```

### Codex

```bash
codex mcp add twilize5-tableaugen-mcp -- npx -y tableaugen-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "twilize5-tableaugen-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "tableaugen-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add twilize5-tableaugen-mcp --command npx --arg -y --arg tableaugen-mcp
```

### Hermes

```yaml
mcp_servers:
  twilize5-tableaugen-mcp:
    command: "npx"
    args: ["-y", "tableaugen-mcp"]
```

### Netclaw

```json
{
  "McpServers": {
    "twilize5-tableaugen-mcp": {
      "Transport": "stdio",
      "Command": "npx",
      "Arguments": [
        "-y",
        "tableaugen-mcp"
      ]
    }
  }
}
```

### Vellum

```bash
assistant mcp add twilize5-tableaugen-mcp -t stdio -c npx -a -y tableaugen-mcp
```

### Other

```json
{
  "mcpServers": {
    "twilize5-tableaugen-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "tableaugen-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-09-25 (score 69, 0)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-09-24 (score 69, 0)

- [functional regression] Security disclosure: fail → unverified

### 2026-09-22 (score 69, 0)

- [functional regression] Security disclosure: unverified → fail

### 2026-09-21 (score 69)

First indexed and scored.

## MCP tools (5)

### `generate_workbook` (~138 tokens)

Generate a Tableau workbook (.twb or .twbx) from a CSV file and a natural-language prompt. Returns the path to the generated workbook.

Input parameters:

- `csv_path` (string, required): Absolute path to the source CSV file.
- `output_path` (string, required): Absolute path where the generated workbook should be saved. Extension determines format (.twb or .twbx).
- `prompt` (string, required): Natural-language description of the dashboard to generate (e.g. 'quarterly revenue by region with YoY comparison').
- `style` (string): Optional style hint: 'corporate', 'executive', 'analytical', or a custom description.

### `profile_dataset` (~51 tokens)

Inspect a CSV file and return its schema, inferred data types, cardinality, and null counts. Useful before calling generate_workbook.

Input parameters:

- `csv_path` (string, required): Absolute path to the CSV file to profile.

### `publish_to_cloud` (~125 tokens)

Publish a generated Tableau workbook to Tableau Cloud or Tableau Server via REST API.

Input parameters:

- `pat_name` (string, required): Personal Access Token name.
- `pat_secret` (string, required): Personal Access Token secret.
- `project_name` (string, required): Target project name on the Tableau site.
- `server_url` (string, required): Tableau Cloud/Server URL (e.g. 'https://prod-apnortheast-a.online.tableau.com').
- `site_id` (string, required): Tableau site ID (content URL).
- `workbook_path` (string, required): Absolute path to the .twbx file to publish.

### `list_templates` (~33 tokens)

Return the list of built-in dashboard templates TabGen can start from (sales, OEE, finance, marketing, etc.).

### `preview_workbook` (~46 tokens)

Return a thumbnail image (base64 PNG) of a generated Tableau workbook.

Input parameters:

- `workbook_path` (string, required): Absolute path to the .twb or .twbx file to preview.

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/twilize5-tableaugen-mcp/tableaugen-mcp#diagnostics

## Score history

- 2026-09-26: 69
- 2026-09-25: 69
- 2026-09-24: 69
- 2026-09-23: 69
- 2026-09-22: 69
- 2026-09-21: 69

## Common questions

### What is the io.github.twilize5/tableaugen-mcp server?

io.github.twilize5/tableaugen-mcp is listed in the public MCP registry as io.github.twilize5/tableaugen-mcp. Generate production-ready Tableau workbooks (.twb / .twbx) from natural language and a CSV. This page covers its npm package (tableaugen-mcp).

### Is the io.github.twilize5/tableaugen-mcp server safe to use?

io.github.twilize5/tableaugen-mcp scores 69 out of 100 on VerifyMCP. We found no known CVEs affecting it as of 26 September 2026. It declares no install or post-install scripts. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

### What tools does the io.github.twilize5/tableaugen-mcp server expose?

io.github.twilize5/tableaugen-mcp exposes 5 tools: generate_workbook, profile_dataset, publish_to_cloud, list_templates, preview_workbook. Their descriptions and schemas cost roughly 393 tokens of context every time the server is loaded.

### Is the io.github.twilize5/tableaugen-mcp server still maintained?

io.github.twilize5/tableaugen-mcp is still listed as active in the MCP registry. We last reached this channel on 26 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.

### What licence is the io.github.twilize5/tableaugen-mcp server under?

io.github.twilize5/tableaugen-mcp declares the MIT licence, which is OSI-approved. That covers the source only, and says nothing about the cost of any service it calls.

## Links

- npm package: https://www.npmjs.com/package/tableaugen-mcp
- Socket report: https://socket.dev/npm/package/tableaugen-mcp
- Repository: https://github.com/twilize5/tableaugen-mcp
- Website: https://tableaugen.com/
- Changelog RSS feed: https://verifymcp.io/servers/twilize5-tableaugen-mcp/tableaugen-mcp.xml
- Changelog JSON feed: https://verifymcp.io/servers/twilize5-tableaugen-mcp/tableaugen-mcp.json
- HTML version of this page: https://verifymcp.io/servers/twilize5-tableaugen-mcp/tableaugen-mcp
