Sleep MCP Server

{ "name": "sleep-server", "version": "1.0.0", "description": "Allows AI agents to wait a while, such as adding a delay between an API call and seeing the result", "private": true, "type": "module", "bin": { "sleep-server": "./build/index.js" }, "files": [ "build" ], "scripts": { "build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"", "prepare": "npm run build", "watch": "tsc --watch", "inspector": "npx @modelcontextprotocol/inspector build/index.js", "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js", "test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch" }, "dependencies": { "@modelcontextprotocol/sdk": "0.6.0" }, "devDependencies": { "@types/jest": "^29.5.14", "@types/node": "^20.11.24", "jest": "^29.7.0", "ts-jest": "^29.2.5", "typescript": "^5.3.3" } }