package.json•1.43 kB
{
"name": "@bilims/mcp-sqlserver",
"version": "1.1.0",
"description": "MCP Server for Microsoft SQL Server with CRUD operations and data analysis capabilities",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "jest",
"lint": "eslint src/**/*.ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"sql-server",
"database",
"crud",
"ai",
"model-context-protocol",
"claude"
],
"author": "Bilims",
"repository": {
"type": "git",
"url": "git+https://github.com/bilims/mcp-sqlserver.git"
},
"homepage": "https://github.com/bilims/mcp-sqlserver",
"bugs": {
"url": "https://github.com/bilims/mcp-sqlserver/issues"
},
"bin": {
"mcp-sqlserver": "dist/index.js"
},
"files": [
"dist/**/*",
"README.md",
"ROADMAP.md",
"LICENSE",
".env.example"
],
"license": "Apache-2.0",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"dotenv": "^16.0.0",
"mssql": "^11.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/mssql": "^9.1.5",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
}
}