{
  "name": "structurize-mcp",
  "version": "1.1.0",
  "description": "Anthropic MCP Server for generating structured CSV files from natural language descriptions",
  "main": "build/index.js",
  "bin": {
    "structurize-mcp": "bin/structurize.js"
  },
  "scripts": {
    "build": "tsc",
    "start": "node build/index.js",
    "dev": "tsc && node build/index.js",
    "prepublishOnly": "npm run build && chmod +x ./bin/structurize.js"
  },
  "dependencies": {
    "@google/generative-ai": "^0.2.1",
    "@modelcontextprotocol/sdk": "^1.10.0",
    "csv-stringify": "^6.4.6",
    "express": "^4.19.2",
    "express-fileupload": "^1.5.0",
    "fs-extra": "^11.2.0",
    "yargs": "^17.7.2",
    "yargs-parser": "^21.1.1",
    "zod": "^3.22.4"
  },
  "devDependencies": {
    "@types/express": "^4.17.21",
    "@types/express-fileupload": "^1.4.4",
    "@types/fs-extra": "^11.0.4",
    "@types/node": "^20.11.30",
    "@types/yargs": "^17.0.32",
    "typescript": "^5.4.5"
  },
  "engines": {
    "node": ">=14"
  },
  "keywords": [
    "csv",
    "generator",
    "mcp",
    "anthropic",
    "claude",
    "gemini",
    "ai",
    "data-generation",
    "structured-data"
  ],
  "publishConfig": {
    "access": "public"
  }
}
