UNPKG

@hechtcarmel/vertica-mcp

Version:

MCP server for Vertica database operations with configurable readonly mode

71 lines (70 loc) 1.8 kB
{ "name": "@hechtcarmel/vertica-mcp", "version": "1.3.8", "description": "MCP server for Vertica database operations with configurable readonly mode", "main": "dist/index.js", "type": "module", "bin": { "@hechtcarmel/vertica-mcp": "./dist/index.js", "vertica-mcp": "./dist/index.js" }, "files": [ "dist", "README.md", "LICENSE" ], "engines": { "node": ">=18.0.0" }, "scripts": { "build": "tsc && chmod +x dist/index.js", "dev": "tsc --watch", "start": "node dist/index.js", "clean": "rm -rf dist", "prebuild": "npm run clean", "typecheck": "tsc --noEmit", "lint": "tsc --noEmit", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "test:connection": "npm run build && VERTICA_HOST=localhost npm start", "format": "prettier --write 'src/**/*.{ts,js,json}'", "check": "npm run typecheck && npm run build", "prepare": "npm run build" }, "keywords": [ "mcp", "vertica", "database", "model-context-protocol", "claude", "ai", "readonly", "sql" ], "author": "hechtcarmel@gmail.com", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/hechtcarmel/vertica-mcp.git" }, "bugs": { "url": "https://github.com/hechtcarmel/vertica-mcp/issues" }, "homepage": "https://github.com/hechtcarmel/vertica-mcp#readme", "dependencies": { "@modelcontextprotocol/sdk": "^1.12.3", "dotenv": "^16.3.1", "vertica-nodejs": "^1.1.4", "zod": "^3.22.4" }, "devDependencies": { "@jest/globals": "^30.0.0", "@types/jest": "^29.5.14", "@types/node": "^20.19.0", "jest": "^30.0.0", "prettier": "^3.3.3", "ts-jest": "^29.4.0", "typescript": "^5.7.2" } }