{"id":31767892,"url":"https://github.com/webdevtodayjason/ds-mcp-server","last_synced_at":"2026-03-09T21:08:11.043Z","repository":{"id":296506660,"uuid":"993645886","full_name":"webdevtodayjason/ds-mcp-server","owner":"webdevtodayjason","description":null,"archived":false,"fork":false,"pushed_at":"2025-05-31T08:08:38.000Z","size":25,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-27T23:39:52.206Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/webdevtodayjason.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-05-31T07:50:29.000Z","updated_at":"2025-05-31T08:08:41.000Z","dependencies_parsed_at":"2025-05-31T18:17:37.363Z","dependency_job_id":"8f444565-ec0d-462e-be7b-0975f30e993a","html_url":"https://github.com/webdevtodayjason/ds-mcp-server","commit_stats":null,"previous_names":["webdevtodayjason/ds-mcp-server"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/webdevtodayjason/ds-mcp-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webdevtodayjason%2Fds-mcp-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webdevtodayjason%2Fds-mcp-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webdevtodayjason%2Fds-mcp-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webdevtodayjason%2Fds-mcp-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/webdevtodayjason","download_url":"https://codeload.github.com/webdevtodayjason/ds-mcp-server/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webdevtodayjason%2Fds-mcp-server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30312171,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-09T20:05:46.299Z","status":"ssl_error","status_checked_at":"2026-03-09T19:57:04.425Z","response_time":61,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-10-10T01:48:36.518Z","updated_at":"2026-03-09T21:08:11.016Z","avatar_url":"https://github.com/webdevtodayjason.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DirectStay MCP Server\n\nAn MCP (Model Context Protocol) server that provides tools for interacting with the DirectStay API.\n\n## Installation\n\nYou can run this MCP server using `npx` without installing it locally:\n\n```bash\nnpx @webdevtoday/ds-mcp-server\n```\n\n## Configuration\n\n### Claude Desktop\n\nAdd the following to your Claude Desktop configuration:\n\n```json\n{\n  \"mcpServers\": {\n    \"directstay\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@webdevtoday/ds-mcp-server\"],\n      \"env\": {\n        \"DS_TOKEN\": \"your_directstay_api_token_here\"\n      }\n    }\n  }\n}\n```\n\nTo find your Claude Desktop configuration:\n1. Open Claude Desktop\n2. Go to Settings → Developer → Edit Config\n\n## Available Tools\n\nThis MCP server provides the following tools for interacting with the DirectStay API:\n\n- **get_all_properties** - Get a list of all properties\n- **get_property_by_id** - Get details of a specific property\n- **get_property_bookings** - Get all bookings for a specific property\n- **create_booking** - Create a new booking\n- **update_booking_status** - Update the status of an existing booking\n- **identify_caller** - Identify a caller based on phone number\n- **generate_otp** - Generate a one-time password\n- **verify_otp** - Verify a one-time password\n- **send_message** - Send a message to a user\n- **create_comparison** - Create a property comparison\n- **submit_conversation_insights** - Submit conversation insights\n\nTo see detailed information about all available tools and their parameters:\n\n```bash\nnpx @webdevtoday/ds-mcp-server tools\n```\n\n## Getting Your DirectStay API Token\n\nTo use this MCP server, you'll need a DirectStay API token. Contact DirectStay to obtain your API credentials.\n\n## Development\n\n### Prerequisites\n\n- Node.js (v16+ required, v20+ recommended)\n- npm\n\n### Local Setup\n\n1. Clone the repository\n2. Install dependencies:\n   ```bash\n   npm install\n   ```\n3. Create a `.env` file with your API token:\n   ```\n   DS_TOKEN=your_directstay_api_token_here\n   ```\n4. Run the server:\n   ```bash\n   node mcpServer.js\n   ```\n\n### Running with SSE (Server-Sent Events)\n\n```bash\nnode mcpServer.js --sse\n```\n\n### Docker Support\n\nBuild and run with Docker:\n\n```bash\ndocker build -t ds-mcp-server .\ndocker run -i --rm -e DS_TOKEN=your_token_here ds-mcp-server\n```\n\n## License\n\nMIT\n\n## Support\n\nFor issues or questions about this MCP server, please open an issue on GitHub.\n\nFor DirectStay API support, contact DirectStay directly.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebdevtodayjason%2Fds-mcp-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwebdevtodayjason%2Fds-mcp-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebdevtodayjason%2Fds-mcp-server/lists"}