├── .gitignore ├── README.md ├── assets └── sleep-server.png ├── jest.config.js ├── package.json ├── src ├── index.ts └── services │ ├── __tests__ │ └── sleep.test.ts │ └── sleep.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garoth/sleep-mcp/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garoth/sleep-mcp/HEAD/README.md -------------------------------------------------------------------------------- /assets/sleep-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garoth/sleep-mcp/HEAD/assets/sleep-server.png -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garoth/sleep-mcp/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garoth/sleep-mcp/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garoth/sleep-mcp/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/services/__tests__/sleep.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garoth/sleep-mcp/HEAD/src/services/__tests__/sleep.test.ts -------------------------------------------------------------------------------- /src/services/sleep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garoth/sleep-mcp/HEAD/src/services/sleep.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garoth/sleep-mcp/HEAD/tsconfig.json --------------------------------------------------------------------------------