{
  "name": "mssql-mcp",
  "version": "3.0.0",
  "description": "MCP Server for MS SQL Server integration with Claude Desktop, Cursor, Windsurf and VS Code",
  "main": "dist/src/index.js",
  "type": "module",
  "bin": {
    "mssql-mcp-server": "dist/src/index.js"
  },
  "files": [
    "dist/src/**/*",
    "README.md",
    "package.json"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/BYMCS/mssql-mcp.git"
  },
  "homepage": "https://github.com/BYMCS/mssql-mcp#readme",
  "bugs": {
    "url": "https://github.com/BYMCS/mssql-mcp/issues"
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "start": "node dist/src/index.js",
    "start:http": "cross-env MCP_TRANSPORT=http node dist/src/index.js",
    "clean": "rimraf dist",
    "prepublishOnly": "npm run clean && npm run build",
    "typecheck": "tsc --noEmit",
    "test": "node --test dist/tests/unit/validators.test.js dist/tests/unit/query-builders.test.js dist/tests/unit/tool-contracts.test.js dist/tests/unit/markdown.test.js dist/tests/unit/errors.test.js dist/tests/unit/config.test.js dist/tests/unit/format.test.js",
    "test:integration": "node --test dist/tests/integration/*.test.js",
    "ci": "npm run typecheck && npm run build && npm test"
  },
  "keywords": [
    "mcp",
    "mssql",
    "sql-server",
    "database",
    "claude",
    "cursor",
    "windsurf",
    "vscode",
    "model-context-protocol"
  ],
  "author": "BYMCS <hello@bymcs.com>",
  "license": "MIT",
  "dependencies": {
    "@modelcontextprotocol/node": "2.0.0",
    "@modelcontextprotocol/server": "2.0.0",
    "dotenv": "^16.3.1",
    "mssql": "^12.7.2",
    "zod": "^4.6.5"
  },
  "devDependencies": {
    "@modelcontextprotocol/client": "2.0.0",
    "@types/mssql": "^12.3.0",
    "@types/node": "^22.0.0",
    "cross-env": "^7.0.3",
    "rimraf": "^5.0.0",
    "typescript": "^5.9.3"
  }
}