package.json•1.52 kB
{
"name": "mcp-mysql-server",
"version": "1.0.0",
"description": "A Model Context Protocol (MCP) server for MySQL with built-in safety features and operation resistance. Perfect for AI assistants like Claude Code and Codex CLI. Works with both Bun and Node.js.",
"type": "module",
"main": "dist/index.js",
"bin": {
"mcp-mysql-server": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc && node dist/index.js",
"clean": "rm -rf dist",
"rebuild": "npm run clean && npm run build",
"prepare": "npm run build",
"bun:build": "bun run build",
"bun:start": "bun run dist/index.js",
"bun:dev": "bun run build && bun run dist/index.js"
},
"keywords": [
"mcp",
"mysql",
"database",
"model-context-protocol",
"claude",
"claude-code",
"codex-cli",
"ai-assistant",
"sql",
"security",
"prepared-statements"
],
"author": "MCP MySQL Server Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/mcp-mysql-server.git"
},
"bugs": {
"url": "https://github.com/yourusername/mcp-mysql-server/issues"
},
"homepage": "https://github.com/yourusername/mcp-mysql-server#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"mysql2": "^3.11.5",
"dotenv": "^16.4.7"
},
"devDependencies": {
"@types/node": "^22.10.2",
"typescript": "^5.7.2"
}
}