package.json•972 B
{
"name": "tableau-mcp-server",
"version": "1.0.0",
"description": "MCP server for Tableau Cloud and Server operations",
"main": "dist/server.js",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/server.ts",
"start": "node dist/server.js",
"clean": "rimraf dist",
"test": "tsx test-phase1-2.ts",
"test:verify": "npm run build && tsx test-phase1-2.ts"
},
"keywords": [
"mcp",
"tableau",
"model-context-protocol"
],
"author": "Agile Market Intelligence",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"axios": "^1.7.9",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.0",
"@types/node": "^22.10.1",
"rimraf": "^6.0.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18.0.0"
}
}