Spaces:
Sleeping
Sleeping
| { | |
| "name": "suncture-healthcare-mcp", | |
| "version": "1.0.0", | |
| "description": "Healthcare MCP Server with medical tools for AI assistants", | |
| "main": "dist/index.js", | |
| "type": "module", | |
| "bin": { | |
| "suncture-healthcare-mcp": "./dist/bin.js" | |
| }, | |
| "scripts": { | |
| "build": "tsc && node scripts/fix-shebangs.js", | |
| "build:css": "npx tailwindcss -i ./src/public/styles.css -o ./src/public/tailwind.css", | |
| "start": "node dist/index.js", | |
| "dev": "ts-node src/index.ts", | |
| "prepare": "npm run build", | |
| "prepublishOnly": "npm test && npm run lint", | |
| "lint": "eslint src/**/*.ts", | |
| "test": "echo \"No tests specified\" && exit 0", | |
| "test-sse": "node scripts/test-sse-client.js" | |
| }, | |
| "files": [ | |
| "dist", | |
| "README.md", | |
| "LICENSE" | |
| ], | |
| "repository": { | |
| "type": "git", | |
| "url": "git+https://github.com/wilforlan/suncture-mcp.git" | |
| }, | |
| "publishConfig": { | |
| "access": "public" | |
| }, | |
| "keywords": [ | |
| "healthcare", | |
| "mcp", | |
| "medical", | |
| "ai", | |
| "assistant", | |
| "claude", | |
| "model-context-protocol" | |
| ], | |
| "author": "Isaac Williams, Suncture", | |
| "license": "MIT", | |
| "dependencies": { | |
| "@chatmcp/sdk": "^1.0.5", | |
| "@modelcontextprotocol/sdk": "^1.9.0", | |
| "@tailwindcss/forms": "^0.5.10", | |
| "@types/cors": "^2.8.17", | |
| "concurrently": "^8.2.2", | |
| "cors": "^2.8.5", | |
| "express": "^4.18.2", | |
| "node-fetch": "^3.3.2", | |
| "tailwindcss": "^4.1.4", | |
| "zod": "^3.22.0" | |
| }, | |
| "devDependencies": { | |
| "@types/express": "^4.17.21", | |
| "@types/node": "^20.5.0", | |
| "@typescript-eslint/eslint-plugin": "^6.4.0", | |
| "@typescript-eslint/parser": "^6.4.0", | |
| "eslint": "^8.47.0", | |
| "ts-node": "^10.9.1", | |
| "typescript": "^5.1.6" | |
| }, | |
| "engines": { | |
| "node": ">=18.0.0" | |
| } | |
| } | |