survey-mcp-server
Version:
Survey management server handling survey creation, response collection, analysis, and reporting with database access for data management
84 lines (83 loc) • 2.58 kB
JSON
{
"name": "survey-mcp-server",
"version": "1.1.6",
"description": "Survey management server handling survey creation, response collection, analysis, and reporting with database access for data management",
"main": "dist/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "git://github.com/syia-ai/survey_mcp_server.git"
},
"bin": {
"survey-mcp-server": "bin/cli.js",
"survey-mcp-server-test": "npx-test.js"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:security": "jest --testPathPattern=security",
"test:integration": "jest --testPathPattern=integration",
"test:unit": "jest --testPathPattern=unit",
"test:mcp": "DANGEROUSLY_OMIT_AUTH=true npx @modelcontextprotocol/inspector node dist/index.js",
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"postinstall": "node install.js",
"prepare": "chmod +x bin/cli.js npx-test.js && npm run build",
"install-global": "npm install -g .",
"postpublish": "echo 'Package published! Note: The npx test may not work immediately as the registry needs time to update.'",
"test-npx": "cd /tmp && cp ~/Documents/SIYA/survey_mcp_server/.npmrc .npmrc && npx -y @syia-ai/survey-mcp-server@latest --help",
"version-bump": "node scripts/version-bump.js",
"release": "npm version version-bump && git push --follow-tags && npm publish"
},
"keywords": [
"mcp",
"survey",
"research",
"data-collection"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.6.0",
"@types/node": "^22.10.2",
"axios": "^1.6.0",
"cheerio": "^1.0.0-rc.12",
"commander": "^12.1.0",
"dotenv": "^16.3.1",
"form-data": "^4.0.0",
"google-auth-library": "^9.4.0",
"googleapis": "^128.0.0",
"mongodb": "^6.0.0",
"nodemailer": "^6.9.0",
"openai": "^4.20.0",
"pdf-parse": "^1.1.1",
"playwright": "^1.53.0",
"typesense": "^1.8.2",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/mongodb": "^4.0.6",
"@types/winston": "^2.4.4",
"jest": "^29.5.0",
"jest-environment-node": "^29.5.0",
"mongodb-memory-server": "^8.12.0",
"supertest": "^6.3.0",
"@types/supertest": "^2.0.12",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsx": "^4.19.4"
},
"files": [
"bin/",
"dist/",
"README.md",
"install.js",
"npx-test.js"
],
"engines": {
"node": ">=18.0.0"
}
}