{"id":50748797,"url":"https://github.com/mderazon/rentalready-mcp","last_synced_at":"2026-06-10T23:30:36.452Z","repository":{"id":348747306,"uuid":"1199709769","full_name":"mderazon/rentalready-mcp","owner":"mderazon","description":null,"archived":false,"fork":false,"pushed_at":"2026-04-02T16:24:20.000Z","size":34,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-03T04:39:30.444Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/mderazon.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-02T16:17:12.000Z","updated_at":"2026-04-02T16:24:24.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/mderazon/rentalready-mcp","commit_stats":null,"previous_names":["mderazon/rentalready-mcp"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/mderazon/rentalready-mcp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mderazon%2Frentalready-mcp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mderazon%2Frentalready-mcp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mderazon%2Frentalready-mcp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mderazon%2Frentalready-mcp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mderazon","download_url":"https://codeload.github.com/mderazon/rentalready-mcp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mderazon%2Frentalready-mcp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34175887,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-10T02:00:07.152Z","response_time":89,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":"2026-06-10T23:30:31.661Z","updated_at":"2026-06-10T23:30:36.437Z","avatar_url":"https://github.com/mderazon.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RentalReady MCP Server\n\nA token-efficient **Model Context Protocol (MCP)** server that wraps the RentalReady Property Management System (PMS) API. It enables AI agents (like Claude Desktop or Claude Code) to interact with RentalReady via natural language.\n\nBuilt on **Cloudflare Workers**, this server implements a lightweight \"Code Mode\" pattern combining `search` and `execute` tools. This solves the heavy context window costs of native REST API mappings (turning a ~1.17M token API into ~1K tokens).\n\n\u003e *Read the original architecture inspiration: **[Code Mode MCP by Cloudflare](https://blog.cloudflare.com/code-mode-mcp/)***\n\n\n## Getting Started (For End Users)\n\nYou can easily plug this server into your Claude Desktop app or the Claude CLI (Claude Code) by adding it as an SSE (Server-Sent Events) MCP Server.\n\n### Claude Desktop\nAdd the following to your `claude_desktop_config.json` file:\n\n```json\n{\n  \"mcpServers\": {\n    \"rentalready\": {\n      \"command\": \"npx\",\n      \"args\": [\n        \"-y\",\n        \"@modelcontextprotocol/create-server\",\n        \"--type\",\n        \"sse\",\n        \"--url\",\n        \"https://rentalready-mcp.treeview.dev/mcp\"\n      ]\n    }\n  }\n}\n```\n\n### Claude.ai Web UI (Custom Connectors)\nYou can directly integrate this MCP server into Claude's Web UI via the **Custom Connectors (BETA)** feature:\n\n1. In Claude.ai, navigate to **Settings -\u003e Customize -\u003e Connectors**.\n2. Click **Add custom connector**.\n3. Fill in the modal:\n   - **Name**: `RentalReady`\n   - **Remote MCP server URL**: `https://rentalready-mcp.treeview.dev/mcp`\n   - **Advanced settings**: You can leave OAuth Client ID and Secret blank (the worker manages its own authentication flow).\n4. Click **Add**.\n\n*(When first making requests, you will be prompted via OAuth to grant Claude access to your RentalReady account).*\n\n\n---\n\n\n## Development \u0026 Deployment (For Contributors)\n\nIf you are looking to host, modify, or deploy this server yourself, use these instructions:\n\n### Prerequisites\n- Node.js \u0026 npm\n- A Cloudflare account with Wrangler CLI (`npx wrangler login`)\n\n### Setup Cloudflare Secrets\nThe server requires the following secrets to interact with RentalReady and secure its OAuth session states.\n```bash\nnpx wrangler secret put RENTALREADY_CLIENT_ID\nnpx wrangler secret put RENTALREADY_CLIENT_SECRET\nnpx wrangler secret put COOKIE_ENCRYPTION_KEY\n```\n\n\u003e For local development, create a `.dev.vars` file and define these values. \n\n### Local Development\nTo run the server locally on `http://localhost:8787/mcp`, use:\n```bash\nnpm install\nnpm run dev\n```\n\n### Deployment\nTo bundle and deploy the worker logic, cron jobs, and custom domain to Cloudflare edge:\n```bash\nnpm run deploy\n```\n\n*(Ensure you have provisioned the required `rentalready-spec` R2 Bucket and `OAUTH_KV` KV namespace in Cloudflare, as defined in `wrangler.jsonc`.)*\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmderazon%2Frentalready-mcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmderazon%2Frentalready-mcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmderazon%2Frentalready-mcp/lists"}