Files
mcp-database-server/package.json
Fabrizio Ferrigno 72325c95a3 feat: Add AWS IAM authentication support for MySQL
- Add @aws-sdk/rds-signer dependency for RDS auth token generation
- Extend CLI arguments with --aws-iam-auth and --aws-region options
- Implement automatic AWS RDS auth token generation in MySQL adapter
- Auto-enable SSL for AWS IAM authentication (required by RDS)
- Add comprehensive error handling for AWS credential issues
- Update documentation with AWS IAM authentication examples
- Maintain backward compatibility with existing authentication methods

Resolves the need for secure AWS RDS connections without hardcoded passwords.
2025-07-16 17:20:37 +02:00

42 lines
1.3 KiB
JSON

{
"name": "@executeautomation/database-server",
"version": "1.1.0",
"description": "MCP server for interacting with SQLite and SQL Server databases by ExecuteAutomation",
"license": "MIT",
"author": "ExecuteAutomation, Ltd (https://executeautomation.com)",
"homepage": "https://github.com/executeautomation/mcp-database-server",
"bugs": "https://github.com/executeautomation/database-server/issues",
"type": "module",
"bin": {
"ea-database-server": "dist/src/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/src/index.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"start": "node dist/src/index.js",
"dev": "tsc && node dist/src/index.js",
"example": "node examples/example.js",
"clean": "rimraf dist"
},
"dependencies": {
"@aws-sdk/rds-signer": "^3.0.0",
"@modelcontextprotocol/sdk": "1.9.0",
"mssql": "11.0.1",
"mysql2": "^3.14.1",
"pg": "^8.11.3",
"sqlite3": "5.1.7"
},
"devDependencies": {
"@types/mssql": "^9.1.5",
"@types/pg": "^8.11.13",
"@types/sqlite3": "5.1.0",
"rimraf": "^5.0.5",
"shx": "0.4.0",
"typescript": "5.8.3"
}
}