package.json•1.48 kB
{
"name": "@sajithrw/mcp-mysql",
"version": "1.0.0",
"description": "Model Context Protocol server for MySQL databases including AWS RDS",
"main": "build/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/sajithrw/mcp-mysql.git"
},
"homepage": "https://github.com/sajithrw/mcp-mysql#readme",
"bugs": {
"url": "https://github.com/sajithrw/mcp-mysql/issues"
},
"bin": {
"mcp-mysql": "./build/index.js"
},
"scripts": {
"build": "tsc && chmod +x build/index.js",
"dev": "tsc && node build/index.js",
"test": "npm run build && node build/test.js",
"test-mcp": "npx @modelcontextprotocol/inspector node build/index.js",
"setup-vscode": "echo 'Add the configuration from VSCODE_SETUP.md to your VS Code settings.json'"
},
"keywords": [
"mcp",
"model-context-protocol",
"mysql",
"database",
"aws-rds",
"sql",
"typescript",
"ai-assistant",
"github-copilot",
"vscode",
"schema-introspection",
"query-execution"
],
"author": "Sajith Rathnayake <sajithrw@gmail.com>",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"mysql2": "^3.11.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.5.0"
},
"files": [
"build/index.js",
"build/index.d.ts",
"build/index.js.map",
"build/index.d.ts.map",
"README.md",
"LICENSE"
]
}