{
  "name": "mssql-mcp-server",
  "version": "1.3.0",
  "description": "MCP server for Microsoft SQL Server database access and comprehensive schema exploration using tedious. Includes enhanced stored procedure tools for complete SQL source code access.",
  "main": "dist/index.js",
  "type": "module",
  "bin": {
    "mssql-mcp-server": "dist/index.js"
  },
  "files": [
    "dist/",
    "README.md",
    "LICENSE",
    "CHANGELOG.md",
    "CONFIGURATION_GUIDE.md",
    "TOOLS-REFERENCE.md",
    "examples/",
    ".env.example"
  ],
  "scripts": {
    "build": "node --max-old-space-size=8192 ./node_modules/typescript/bin/tsc",
    "dev": "node --max-old-space-size=8192 ./node_modules/typescript/bin/tsc --watch",
    "start": "node dist/index.js",
    "clean": "rimraf dist",
    "test": "bun test tests/query-utils.test.ts",
    "prepublishOnly": "npm run clean && npm run build && npm test",
    "test:integration": "node tests/mcp-server.test.js"
  },
  "keywords": [
    "mcp",
    "model-context-protocol",
    "mssql",
    "sql-server",
    "database",
    "tedious",
    "microsoft-sql-server"
  ],
  "author": "vicagbasi",
  "license": "MIT",
  "homepage": "https://github.com/vicagbasi/mssql-mcp#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vicagbasi/mssql-mcp.git"
  },
  "bugs": {
    "url": "https://github.com/vicagbasi/mssql-mcp/issues"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.29.0",
    "dotenv": "^17.0.0",
    "tedious": "^20.0.0",
    "zod": "^3.25.76"
  },
  "devDependencies": {
    "@types/node": "^22.9.0",
    "@types/tedious": "^4.0.14",
    "rimraf": "^6.1.3",
    "typescript": "^5.6.3"
  },
  "engines": {
    "node": ">=20.0.0"
  }
}
