package.json•852 B
{
"name": "claude-mcp-data-explorer",
"version": "0.1.0",
"description": "A TypeScript MCP server for data exploration with Claude",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"prestart": "npm run build",
"setup": "node setup.js && npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"claude",
"mcp",
"data",
"exploration"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"csv-parse": "^5.5.3",
"papaparse": "^5.4.1",
"plotly.js-dist-min": "^2.29.0",
"simple-statistics": "^7.8.3"
},
"devDependencies": {
"@types/node": "^20.10.4",
"@types/papaparse": "^5.3.14",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}