MCP Catalogs
Home

everything vs tableau-mcp

Side-by-side comparison to help you pick between these two MCP servers.

everything
by modelcontextprotocol
tableau-mcp
by tableau
Stars★ 85,748★ 270
30d uses
Score7751
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsDatabase
LanguageTypeScriptTypeScript
Last committhis monththis month

everything · Summary

Official MCP test server exercising all protocol features for client builders.

tableau-mcp · Summary

Tableau's official MCP Server provides tools, resources and prompts for AI applications to integrate with Tableau data.

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

tableau-mcp · Use cases

  • AI assistants analyzing Tableau data to answer business questions
  • Automated reporting systems querying Tableau for real-time metrics
  • Content exploration and navigation of Tableau workbooks and views

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything

tableau-mcp · Install

Installation

  1. Install Node.js 22.7.5 or newer
  2. Configure your MCP client with the following settings:
{
  "mcpServers": {
    "tableau": {
      "command": "npx",
      "args": ["-y", "@tableau/mcp-server@latest"],
      "env": {
        "SERVER": "https://my-tableau-server.com",
        "SITE_NAME": "my_site",
        "PAT_NAME": "my_pat",
        "PAT_VALUE": "pat_value"
      }
    }
  }
}

Alternative Deployment

[Deploy to Heroku](https://www.heroku.com/deploy?template=https://github.com/tableau/tableau-mcp)

Comparison generated from public README + GitHub signals. Last updated automatically.