package.json•2.9 kB
{
"name": "@donggyunryu/mcp-sql",
"version": "1.0.0",
"description": "Microsoft SQL Server(MSSQL, MySQL, PostgreSQL) MCP (Model Context Protocol) Server - A powerful database management tool for AI assistants",
"main": "build/index.js",
"type": "module",
"bin": {
"mcp-sql": "build/index.js"
},
"files": [
"build/",
"README.md",
"LICENSE",
"env.example"
],
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "tsc-watch --onSuccess \"node build/index.js\"",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test:db": "node test-connection.js",
"clean": "rimraf build",
"setup": "npm install && npm run build",
"prepublishOnly": "npm run clean && npm run build",
"lint": "eslint src tests --ext .ts",
"lint:fix": "eslint src tests --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\" \"*.{js,json,md}\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\" \"*.{js,json,md}\"",
"type-check": "tsc --noEmit",
"validate": "npm run type-check && npm run lint && npm run format:check && npm run test",
"precommit": "npm run validate",
"audit": "npm audit --audit-level moderate",
"audit:fix": "npm audit fix",
"outdated": "npm outdated",
"update": "npm update",
"coverage:open": "npm run test:coverage && open coverage/lcov-report/index.html",
"docs": "typedoc src --out docs --theme default",
"generate-tests": "npx tsx test/generate-tests.ts"
},
"keywords": [
"mcp",
"model-context-protocol",
"sql",
"mssql",
"mysql",
"postgresql",
"sql-server",
"database",
"claude",
"cursor",
"vscode",
"windsurf",
"typescript",
"nodejs",
"npm",
"npx"
],
"author": {
"name": "donggyunryu",
"email": "ryudg95@gmail.com",
"url": "https://github.com/ryudg"
},
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"dotenv": "^16.4.5",
"mssql": "^11.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/mssql": "^9.1.7",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-security": "^3.0.1",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"rimraf": "^5.0.7",
"ts-jest": "^29.1.4",
"tsc-watch": "^6.0.4",
"typedoc": "^0.28.4",
"typescript": "^5.6.2"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryudg/mcp-sql.git"
},
"bugs": {
"url": "https://github.com/ryudg/mcp-sql/issues"
},
"homepage": "https://github.com/ryudg/mcp-sql#readme"
}