@hechtcarmel/vertica-mcp
Version:
MCP (Model Context Protocol) server for readonly Vertica database operations
62 lines • 1.56 kB
JSON
{
"name": "@hechtcarmel/vertica-mcp",
"version": "1.2.2",
"description": "MCP (Model Context Protocol) server for readonly Vertica database operations",
"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"
},
"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",
"vertica-nodejs": "^1.1.4",
"zod": "^3.22.4",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/node": "^20.19.0",
"typescript": "^5.7.2",
"prettier": "^3.3.3"
},
"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:connection": "npm run build && VERTICA_HOST=localhost npm start",
"format": "prettier --write 'src/**/*.{ts,js,json}'",
"check": "npm run typecheck && npm run build"
}
}