Rentman MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Rentman MCP Servershow me equipment for project 5616"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Rentman MCP Server
A small remote MCP (Model Context Protocol) server that gives ChatGPT and Claude direct, live access to our Rentman account — projects, equipment, contacts, crew, and any other Rentman resource — without the endpoint cap, CSV lookup table, or pagination bugs the old Custom GPT had.
Once deployed, every AE adds this as a custom connector in ChatGPT or Claude Desktop (one URL, pasted once) and can just ask things like "what equipment is booked on the 47G Summit" in plain English.
Tested end-to-end against the live Rentman API before handoff — see "What was tested" below.
Tools it exposes
rentman_search_projects — free-text project search (client-side scan, since Rentman's API has no text-search filter), or exact lookup by project number / customer id / location id.
rentman_project_details — full project info with customer/venue/contacts/account manager resolved to real names (replaces the static CSV mapping file).
rentman_project_equipment — every equipment line on a project, grouped and paginated automatically.
rentman_get — fetch any single record by resource + id (e.g.
contacts,crew,costs).rentman_query — generic filtered list against any Rentman resource, for anything not covered by the tools above.
Related MCP server: RescueTime MCP Server
Deploying
Push this folder to a GitHub repo first (private is fine) — both options below deploy from that repo. The server is written to work either way: it's stateless per-request (a fresh MCP session on every call, no in-memory state kept between requests), so it runs equally well as a long-lived process or as a serverless function.
Option A — Vercel
Import the GitHub repo in Vercel (New Project → pick the repo).
Vercel auto-detects
api/index.jsas a serverless function — no build config needed.Project Settings → Environment Variables: add
RENTMAN_TOKENandMCP_SHARED_SECRET.Deploy. Vercel gives you a URL like
https://rentman-mcp.vercel.app.Your connector URL is:
https://rentman-mcp.vercel.app/mcp?key=<MCP_SHARED_SECRET>
vercel.json rewrites every path to api/index.js, so /mcp and /health both work normally
even though Vercel only auto-routes /api/* by default. Cold starts are typically ~1s, much
faster than Render's free tier.
Option B — Render (free tier)
In Render: New → Web Service, connect the same GitHub repo.
Build command:
npm install. Start command:npm start(runsserver.js, a normal always-on Node process — not theapi/serverless entry point Vercel uses).Environment tab: add
RENTMAN_TOKENandMCP_SHARED_SECRET.Deploy. Render gives you a URL like
https://rentman-mcp.onrender.com.Your connector URL is:
https://rentman-mcp.onrender.com/mcp?key=<MCP_SHARED_SECRET>
Render's free tier spins the service down after inactivity, so the first request after a while will be slow (~30s cold start) — Vercel doesn't have this problem, which makes it the better default choice for this project.
Local dev
npm install
cp .env.example .env # fill in RENTMAN_TOKEN and MCP_SHARED_SECRET
npm start # runs server.js on http://localhost:3000Connecting from ChatGPT
Settings → Apps → enable Developer Mode → Add custom connector → paste the connector URL above.
Connecting from Claude Desktop
Customize → Connectors → "+" → Add custom connector → paste the connector URL above.
Security notes
The Rentman token lives only in the server's environment variables — it's never sent to or stored by any AE's device.
The
keyquery param is a shared secret gate so random people who find the URL can't query our Rentman data. Treat the connector URL itself as sensitive (don't post it in public channels).If the Rentman token needs to be rotated, update the
RENTMAN_TOKENenv var on the host — no code change needed.
What was tested before handoff
Ran locally against the live Rentman API (intheevent account):
MCP
initializehandshakeAuth rejection when the shared-secret key is missing
tools/list— all 5 tools register correctlyrentman_search_projects— found "2026 47G Zero Gravity Summit @ Salt Palace Convention Center" (project 5616) as the most recent 47G match, matching manual verificationrentman_project_details— resolved customer/venue/contacts/account manager to real namesrentman_project_equipment— returned all 22 equipment groups / 447 line items for project 5616, matching a manual pull done earlier in this project
One real Rentman API quirk found and worked around: cursor-based pagination (next_page_url)
silently stops working when a sort param is combined with limit=300 — it returns null after
the first page even though more results exist. The search tool uses offset-based paging instead,
which does work correctly.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jonnynguyen528-art/Rentman'
If you have feedback or need assistance with the MCP directory API, please join our Discord server