UNPKG

sequelae-mcp

Version:

Let Claude, Cursor, and other AI agents run real SQL queries on live Postgres databases. No more copy-pasting SQL, stale schema docs, or hallucinated DB adapters — just raw, real-time access. Now with MCP support!

91 lines (90 loc) 2.58 kB
{ "name": "sequelae-mcp", "version": "1.0.9", "description": "Let Claude, Cursor, and other AI agents run real SQL queries on live Postgres databases. No more copy-pasting SQL, stale schema docs, or hallucinated DB adapters — just raw, real-time access. Now with MCP support!", "main": "dist/index.js", "types": "dist/index.d.ts", "engines": { "node": ">=18.0.0" }, "repository": { "type": "git", "url": "git+https://github.com/davstr1/SeQueLaeMCP.git" }, "homepage": "https://github.com/davstr1/SeQueLaeMCP#readme", "bugs": { "url": "https://github.com/davstr1/SeQueLaeMCP/issues" }, "author": "", "license": "MIT", "keywords": [ "cli", "postgres", "sql", "supabase", "neon", "railway", "cursor", "cursor.ai", "claude", "claude-code", "claude ai", "ai agent", "database cli", "sql tool", "vibe coding", "devtool", "developer experience", "automation", "mcp", "model-context-protocol" ], "bin": { "sequelae": "bin/sequelae", "smcp": "bin/sequelae" }, "scripts": { "build": "tsc", "test": "jest", "test:coverage": "jest --coverage", "test:unit": "jest --testPathIgnorePatterns='(e2e|jsonb-schema|cli-exec|cli-file|cli-schema|edge-cases|security|mcp-tool-handler|cli-integration|cli-behavior)\\.(test|spec)\\.ts$'", "test:integration": "jest --testPathPattern='(e2e|jsonb-schema|cli-exec|cli-file|cli-schema|edge-cases|security|mcp-tool-handler|cli-integration|cli-behavior)\\.(test|spec)\\.ts$'", "test:ci": "npm run test:unit", "test:watch": "jest --watch", "lint": "eslint 'src/**/*.ts' 'tests/**/*.ts'", "lint:fix": "eslint 'src/**/*.ts' 'tests/**/*.ts' --fix", "format": "prettier --write .", "format:check": "prettier --check .", "prepublishOnly": "npm run lint && npm run build", "prepare": "husky" }, "dependencies": { "dotenv": "^16.0.0", "pg": "^8.16.2" }, "devDependencies": { "@types/jest": "29.5.14", "@types/node": "^24.0.4", "@types/pg": "^8.10.0", "@typescript-eslint/eslint-plugin": "^8.35.0", "@typescript-eslint/parser": "^8.35.0", "eslint": "^9.29.0", "eslint-config-prettier": "^10.1.5", "husky": "^9.1.7", "jest": "29.7.0", "lint-staged": "^16.1.2", "prettier": "^3.6.1", "ts-jest": "29.1.0", "typescript": "^5.0.0" }, "lint-staged": { "src/**/*.ts": [ "eslint --fix", "prettier --write" ], "tests/**/*.ts": [ "eslint --fix", "prettier --write" ] } }