package.json•1.61 kB
{
"name": "mssql-mcp-server",
"version": "1.0.0",
"description": "A Model Context Protocol (MCP) server that enables AI assistants to interact with both local SQL Server and Azure SQL Database through natural language",
"main": "dist/index.js",
"bin": {
"mssql-mcp-server": "dist/index.js"
},
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"start": "node dist/index.js",
"dev": "npm run build && npm run start",
"clean": "shx rm -rf dist",
"lint": "echo 'Linting not configured yet'",
"test": "echo 'Tests not configured yet'"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CONTRIBUTING.md"
],
"keywords": [
"mcp",
"model-context-protocol",
"sql-server",
"azure-sql",
"database",
"ai",
"claude",
"typescript",
"mssql",
"natural-language",
"database-interaction"
],
"author": "MSSQL MCP Server Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/USERNAME/mssql-mcp-server.git"
},
"homepage": "https://github.com/USERNAME/mssql-mcp-server#readme",
"bugs": {
"url": "https://github.com/USERNAME/mssql-mcp-server/issues"
},
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@types/mssql": "^9.1.7",
"@types/node": "^16.7.13",
"shx": "^0.3.4",
"typescript": "^4.9.5"
},
"dependencies": {
"@azure/identity": "^4.8.0",
"@modelcontextprotocol/sdk": "^1.0.0",
"dotenv": "^10.0.0",
"mssql": "^11.0.1"
},
"type": "module"
}