| 1234567891011121314151617181920212223242526272829 |
- {
- "name": "@saas/mcp-server",
- "version": "1.0.0",
- "description": "MCP server for SaaS platform access",
- "main": "dist/index.js",
- "type": "module",
- "scripts": {
- "dev": "tsx watch src/index.ts",
- "build": "tsc",
- "start": "node dist/index.js",
- "mcp:install": "npm install -g @modelcontextprotocol/server-stdio"
- },
- "dependencies": {
- "@modelcontextprotocol/sdk": "^0.4.0",
- "axios": "^1.6.2",
- "ws": "^8.14.2",
- "uuid": "^9.0.1",
- "dotenv": "^16.3.1"
- },
- "devDependencies": {
- "@types/ws": "^8.5.10",
- "@types/uuid": "^9.0.7",
- "tsx": "^4.6.2",
- "typescript": "^5.3.3"
- },
- "bin": {
- "mcp-saas-server": "./dist/index.js"
- }
- }
|