emotions-mcp-server
Version:
MCP Server for accessing PostgreSQL emotions database
46 lines • 1.11 kB
JSON
{
"name": "emotions-mcp-server",
"version": "1.0.16",
"description": "MCP Server for accessing PostgreSQL emotions database",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"emotions-mcp-server": "./dist/index.js"
},
"keywords": [
"mcp",
"postgres",
"emotions",
"database"
],
"author": "",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.3",
"pg": "^8.11.3",
"pg-promise": "^11.5.4",
"zod": "^3.25.67"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.5",
"@types/pg": "^8.10.9",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"globals": "^16.2.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"typescript-eslint": "^8.34.1"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "jest",
"lint": "eslint . -c eslint.config.mjs"
}
}