# Rentman — how to use (mcp.ai)

Connect your Rentman account and use 130 tools for productivity straight from your AI agent. Connect with your own API key. Efficiently manage your crew and equipment from one place and ensure nothing falls through the cracks.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_rentman?ms=1787291340000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `rentman_delete_appointment`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/rentman`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/rentman/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/rentman/delete/appointment` — Tool to delete an appointment by its unique ID. Use when you need to remove an appointment from Rentman.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/delete/appointmentcrew` — Tool to delete an appointmentcrew item by its numeric ID. Use when removing an appointment crew assignment.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/delete/contact` — Tool to delete a contact by its ID. Use when you need to remove a contact from Rentman.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/delete/contact/person` — Tool to delete a contact person from Rentman by their numeric ID. Use when you need to permanently remove a contact person from the system.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/delete/cost/item` — Tool to delete a cost item in Rentman by its numeric ID. Use when you need to remove a cost record from the system.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/delete/crew/availability` — Tool to delete a crew availability item by its ID. Use when you need to remove a specific crew availability entry after confirming its ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/delete/project/request` — Tool to delete a project request by its ID. Use when you need to remove a project request from Rentman.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/delete/project/request/equipment/item` — Tool to delete a project request equipment item by its ID. Use when you need to remove a project request equipment item from Rentman.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/delete/timeregistration` — Tool to delete a time registration item in Rentman by its numeric ID. Use when you need to remove a time registration record from the system.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/accessories/collection` — Tool to retrieve a collection of accessories from Rentman. Use when you need to list or search accessories with optional filtering, sorting, and pagination.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/appointment/crew` — Tool to retrieve the linked crew members for a specific appointment. Use when you need to get the list of crew assigned to an appointment.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/appointmentcrew/collection` — Tool to retrieve appointmentcrew collection from Rentman. Use when you need to list appointment crew assignments with optional pagination, sorting, and field filtering. Results are limited to 300 item
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/appointments/collection` — Tool to retrieve a collection of appointments from Rentman. Use when you need to list or search appointments with optional filtering, sorting, and pagination.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/contact/contactpersons` — Tool to retrieve all contactpersons linked to a specific contact in Rentman. Use when you need to get a list of people associated with a contact organization or entity. Returns comprehensive contact p
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/contact/file/folders` — Tool to get file folders linked to a contact. Use when you need to retrieve all file folders associated with a specific contact by their ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/contact/files` — Tool to get files linked to a contact. Use when you need to retrieve all files associated with a specific contact by their ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/contact/person/files` — Tool to retrieve files linked to a contact person in Rentman. Use when you need to get all files associated with a specific contact person by their ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/contact/persons` — Tool to retrieve the collection of contact persons from Rentman. Use this when you need to list or search contact persons with optional filtering, pagination, and field selection.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/contactperson/file/folders` — Tool to retrieve file folders linked to a contact person in Rentman. Use when you need to get all file folders associated with a specific contact person by their ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/contacts/collection` — Tool to retrieve a collection of contacts from Rentman. Use when you need to fetch contact information with optional filtering and pagination.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer, country?: string }
- `POST https://api.mcp.ai/api/rentman/get/contract/invoicelines` — Retrieves invoicelines linked to a specific contract. Use when you need to get billing information including VAT amounts (BTW bedrag) for a contract.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/contract/item/files` — Tool to retrieve files linked to a specific contract. Use when you need to get all files associated with a contract ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/contracts/collection` — Tool to retrieve a collection of contracts from Rentman. Use when you need to list contracts with optional filtering, pagination, and sorting. Returns contract details including pricing, dates, and as
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/costs/collection` — Tool to retrieve costs collection from Rentman. Use when you need to fetch a list of costs with optional filtering, sorting, and pagination.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/crew/appointments` — Tool to retrieve appointments for a specific crew member. Use when you need to get the schedule or appointments linked to a crew member by their ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/crew/availability` — Tool to retrieve crew availability records for a specific crew member in Rentman. Use when you need to check availability periods, unavailability, or scheduling information for a crew member.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/crew/availability/collection` — Tool to retrieve crew availability collection from Rentman. Use when you need to get information about crew members' availability periods, including their availability status, time periods, and relate
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/crew/collection` — Tool to retrieve crew collection from Rentman. Use when you need to list crew members with optional filtering, pagination, and field selection.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/crew/file/folders` — Tool to retrieve file folders linked to a crew member. Use when you need to get the folder structure for organizing files associated with a specific crew member by their ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/crew/files` — Tool to retrieve files linked to a crew member. Use when you need to get all files associated with a specific crew member by their ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/crew/member` — Tool to retrieve a crew member item by ID from Rentman. Use when you need to fetch detailed information about a specific crew member including contact details, address, and custom fields.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/crew/rates` — Tool to get crew rates linked collection for a specific crew member. Use when you need to retrieve rate information associated with a crew member by their ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/crewrates` — Tool to retrieve crewrates collection from Rentman. Use when you need to fetch crew member rate information with optional filtering, sorting, and pagination.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/equipment/accessories` — Tool to get accessories linked to a specific equipment item. Use when you need to retrieve the list of accessories associated with an equipment itemtype by its ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/equipment/collection` — Tool to get the equipment collection from Rentman. Use when you need to retrieve a list of equipment items with optional filtering and pagination.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/equipment/file/folders` — Tool to get file folders linked to equipment. Use when you need to retrieve all file folders associated with a specific equipment item by its ID.
  - body: { id: integer, limit?: integer, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/equipment/files` — Tool to get files linked to equipment. Use when you need to retrieve all files associated with a specific equipment item by its ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/equipment/repairs` — Tool to retrieve repairs linked to a specific equipment item. Use when you need to fetch repair history or current repairs for equipment by its ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/equipment/serialnumbers` — Tool to retrieve serial numbers linked to a specific equipment item. Use when you need to get all serial numbers associated with an equipment/itemtype ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/equipment/set/content/collection` — Tool to retrieve the equipment sets content collection from Rentman. Use when you need to list or query equipment items that belong to sets, including their quantities and relationships.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/equipment/sets/content` — Tool to get equipment sets content linked collection for a specific equipment item. Use when you need to retrieve the list of equipment items that are part of a set.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/equipment/stockmovements` — Tool to get stockmovements linked collection for a specific equipment item. Use when you need to retrieve stock movement history for equipment.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/files/collection` — Tool to retrieve files collection from Rentman. Use when you need to list or search for files with optional pagination using limit and offset parameters.
  - body: { limit?: integer, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/folder/item` — Tool to retrieve a folder item by ID from Rentman. Use when you need to get details about a specific folder.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/folders/collection` — Tool to retrieve folders collection from Rentman. Use when you need to list all folders or search for specific folders using filters and sorting. Supports pagination with limit and offset parameters.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/invoice/files` — Tool to retrieve files linked to an invoice in Rentman. Use when you need to get all files associated with a specific invoice by its ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/invoice/invoicelines` — Tool to retrieve invoicelines linked to a specific invoice. Use when you need to get line item details including VAT amounts (BTW bedrag), prices, and ledger codes for a particular invoice.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/invoice/payments` — Tool to retrieve payments linked to a specific invoice. Use when you need to get payment records associated with an invoice.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/invoicelines` — Tool to retrieve invoicelines collection from Rentman. Use when you need to access invoice line items with details like VAT amounts, prices, and ledger codes. Supports pagination (up to 300 items per 
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/invoices` — Tool to retrieve a collection of invoices from Rentman. Use when you need to fetch invoice records with optional pagination, filtering, and field selection.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/ledgercodes/collection` — Tool to retrieve ledger codes collection from Rentman. Use when you need to fetch ledger code information that defines the type of trade for invoice lines.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/payments/collection` — Tool to retrieve a collection of payments from Rentman. Use when you need to fetch payment records with optional pagination, sorting, and field selection.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/project/contracts` — Tool to retrieve contracts linked to a specific project from Rentman. Use when you need to fetch all contracts associated with a project by its ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/project/costs` — Tool to retrieve costs linked to a specific project from Rentman. Use when you need to fetch all cost items associated with a particular project by its ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/project/equipment/collection` — Tool to retrieve a collection of project equipment from Rentman. Use when you need to list or search project equipment items with optional filtering, sorting, and pagination.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/project/file/folders` — Tool to retrieve file folders linked to a specific project. Use when you need to get all file folder structures associated with a project by its ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/project/files` — Tool to retrieve files linked to a project. Use when you need to get all files associated with a specific project by its ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/project/projectcrew` — Tool to get project crew custom linked collection for a specific project. Use when you need to retrieve crew members assigned to a project by its ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/project/projectequipment` — Tool to retrieve all equipment items linked to a specific project in Rentman. Use when you need to get the equipment planning details for a particular project, including quantities, pricing, and plann
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/project/projectequipmentgroup` — Tool to get projectequipmentgroup linked collection for a specific project. Use when you need to retrieve project equipment groups associated with a project by its ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/project/projectfunctiongroups` — Tool to retrieve project function groups linked to a specific project in Rentman. Use when you need to fetch project function groups associated with a particular project ID.
  - body: { id: integer, sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/project/projectfunctions` — Tool to retrieve projectfunctions linked to a specific project. Use when you need to fetch project function information for a given project ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/project/projectvehicles` — Tool to retrieve project vehicles linked to a project. Use when you need to get all vehicles associated with a specific project by its ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/project/quotes` — Tool to retrieve quotes linked to a project. Use when you need to get all quotes associated with a specific project by its ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/project/request/equipment` — Tool to retrieve projectrequestequipment linked to a specific project request in Rentman. Use when you need to get equipment items associated with a project request.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/project/request/equipment/collection` — Tool to retrieve project request equipment collection from Rentman. Use when you need to list project request equipment items with optional pagination, sorting, and field filtering. Results are limite
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/project/subprojects` — Tool to retrieve subprojects linked to a specific project from Rentman. Use when you need to fetch all subproject items associated with a project by its ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/projectcrew/collection` — Tool to retrieve projectcrew collection from Rentman. Use when you need to list project crew assignments with optional filtering, pagination, and field selection.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/projectequipmentgroup/collection` — Tool to retrieve projectequipmentgroup collection from Rentman. Use when you need to list project equipment groups with optional pagination, sorting, and field filtering. Results are limited to 300 it
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/projectequipmentgroup/projectequipment` — Tool to get projectequipment linked collection for a specific projectequipmentgroup. Use when you need to retrieve project equipment items associated with a project equipment group by its ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/projectfunction/projectcrew` — Tool to get project crew linked to a specific project function. Use when you need to retrieve crew members assigned to a project function by its ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/projectfunction/projectvehicles` — Tool to retrieve project vehicles linked to a project function. Use when you need to get all vehicles associated with a specific project function by its ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/projectfunctiongroup/projectfunctions` — Tool to get project functions linked to a specific project function group in Rentman. Use when you need to retrieve the custom linked collection of project functions for a given project function group
  - body: { id: integer, sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/projectfunctiongroups/collection` — Tool to retrieve a collection of project function groups from Rentman. Use when you need to fetch project function group information with optional filtering, pagination, and field selection.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/projectfunctions/collection` — Tool to retrieve a collection of projectfunctions from Rentman. Use when you need to fetch projectfunction information with optional filtering and pagination.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/projectrequests/collection` — Tool to retrieve a collection of project requests from Rentman. Use when you need to fetch project request information with optional pagination.
  - body: { limit?: integer, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/projects/collection` — Tool to retrieve a collection of projects from Rentman. Use when you need to fetch project information with optional filtering and pagination.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/projecttypes/collection` — Tool to retrieve a collection of project types from Rentman. Use when you need to fetch project type information with optional filtering and pagination.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/projectvehicles/collection` — Tool to retrieve projectvehicles collection from Rentman. Use when you need to list project vehicles with optional filtering, pagination, and field selection.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/quote/files` — Tool to get files linked to a quote. Use when you need to retrieve all files associated with a specific quote by its ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/quote/invoicelines` — Retrieves invoicelines linked to a specific quote. Use when you need to get billing information including VAT amounts (BTW bedrag) for a quote.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/quotes/collection` — Tool to retrieve a collection of quotes from Rentman. Use when you need to fetch quote information with optional pagination.
  - body: { limit?: integer, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/rate/ratefactors` — Tool to retrieve the ratefactors custom linked collection for a specific rate. Use when you need to get the list of ratefactors associated with a rate.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/ratefactors/collection` — Tool to retrieve a collection of ratefactors from Rentman. Use when you need to fetch ratefactor information with optional filtering and pagination.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/rates/collection` — Tool to retrieve rates collection from Rentman. Use when you need to fetch rate information with optional filtering, sorting, and pagination.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/repair/file/folders` — Tool to get file folders linked to a repair. Use when you need to retrieve all file folders associated with a specific repair by its ID.
  - body: { id: integer, limit?: integer, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/repair/files` — Tool to get files linked to a repair. Use when you need to retrieve all files associated with a specific repair item by its ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/repairs/collection` — Tool to retrieve a collection of repairs from Rentman. Use when you need to fetch repair records with optional filtering and pagination.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/serial/number/files` — Tool to get files linked to a serial number. Use when you need to retrieve all files associated with a specific serial number item by its ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/serialnumber/file/folders` — Tool to get file folders linked to a serial number. Use when you need to retrieve all file folders associated with a specific serial number by its ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/serialnumbers/collection` — Tool to retrieve a collection of serialnumbers from Rentman. Use when you need to fetch serialnumber information with optional filtering and pagination.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/statuses/collection` — Tool to retrieve a collection of statuses from Rentman. Use when you need to fetch status information with optional filtering and pagination.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/stocklocations/collection` — Tool to retrieve stock locations collection from Rentman. Use when you need to fetch information about warehouse or storage locations with optional filtering and pagination.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/stockmovements/collection` — Tool to retrieve the stock movements collection from Rentman. Use when you need to fetch a list of stock movements with optional filtering, sorting, and pagination.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/subproject/file/folders` — Tool to get file folders linked to a subproject. Use when you need to retrieve all file folders associated with a specific subproject by its ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/subproject/projectcrew` — Tool to get project crew custom linked collection for a specific subproject. Use when you need to retrieve crew members assigned to a subproject by its ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/subproject/projectequipment` — Tool to retrieve project equipment collection from a specific subproject in Rentman. Use when you need to list all equipment items or search for specific equipment associated with a subproject. Suppor
  - body: { id: integer, sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/subproject/projectequipmentgroup` — Tool to get projectequipmentgroup linked collection for a specific subproject. Use when you need to retrieve project equipment groups associated with a subproject by its ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/subproject/projectfunctiongroups` — Tool to retrieve project function groups linked to a specific subproject in Rentman. Use when you need to fetch project function groups associated with a particular subproject ID.
  - body: { id: integer, sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/subproject/projectvehicles` — Tool to retrieve project vehicles linked to a subproject. Use when you need to get all vehicles associated with a specific subproject by its ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/subprojects/collection` — Tool to retrieve subprojects collection from Rentman. Use when you need to list all subprojects or search for specific subprojects using filters and sorting. Supports pagination with limit and offset 
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/subrental/equipment/collection` — Tool to retrieve a collection of subrental equipment items from Rentman. Use when you need to fetch subrental equipment information with optional filtering and pagination.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/subrental/equipment/group` — Tool to get subrental equipment group custom linked collection from Rentman. Use when you need to retrieve equipment groups associated with a specific subrental item.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/subrental/equipment/group/collection` — Tool to retrieve the complete collection of subrental equipment groups from Rentman. Use when you need to fetch all subrental equipment groups with optional filtering and pagination.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/subrental/file/folders` — Tool to get file folders linked to a subrental. Use when you need to retrieve the collection of file folders associated with a specific subrental by its ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/subrental/files` — Tool to get files linked to a subrental. Use when you need to retrieve all files associated with a specific subrental item by its ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/subrental/subrentalequipment` — Tool to retrieve subrentalequipment linked to a specific subrental in Rentman. Use when you need to get a list of equipment items associated with a subrental.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/subrentalequipmentgroup/subrentalequipment` — Tool to get subrentalequipment custom linked collection for a specific subrentalequipmentgroup. Use when you need to retrieve subrental equipment items associated with a subrental equipment group by i
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/subrentals/collection` — Tool to get subrentals collection from Rentman. Use when you need to retrieve a list of subrentals with optional pagination.
  - body: { limit?: integer, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/taxclasses/collection` — Tool to retrieve a collection of tax classes from Rentman. Use when you need to fetch tax class information with optional filtering and pagination.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/timeregistration/activities` — Tool to retrieve all timeregistrationactivities linked to a specific timeregistration in Rentman. Use when you need to get details about activities associated with a time registration entry. Returns c
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/timeregistration/activities/collection` — Tool to retrieve a collection of timeregistration activities from Rentman. Use when you need to fetch time registration activity records with optional pagination and filtering.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/timeregistration/collection` — Tool to retrieve a collection of timeregistrations from Rentman. Use when you need to fetch time registration records with optional pagination.
  - body: { limit?: integer, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/get/timeregistration/files` — Tool to get files linked to a time registration. Use when you need to retrieve all files associated with a specific time registration entry by its ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/vehicle/file/folders` — Tool to get file folders linked to a vehicle. Use when you need to retrieve all file folders associated with a specific vehicle by their ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/vehicle/files` — Tool to get files linked to a vehicle. Use when you need to retrieve all files associated with a specific vehicle by its ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/get/vehicles/collection` — Tool to retrieve a collection of vehicles from Rentman. Use when you need to fetch vehicle information with optional filtering and pagination.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/list/actualcontent` — Tool to get actualcontent collection from Rentman. Use when you need to retrieve the actual content of serialized physical combinations with pagination support.
  - body: { limit?: integer, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/list/equipmentassignedserials/collection` — Tool to retrieve serial numbers assigned to serialized physical combinations from Rentman. Use when you need to fetch manually assigned serial numbers (not actual content) from the serial numbers tab.
  - body: { limit?: integer, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/list/factorgroups` — Tool to retrieve factorgroups collection from Rentman. Use when you need to fetch all factor groups with optional filtering and pagination.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/list/factorgroups/factors` — Tool to retrieve the factors collection for a specific factorgroup. Use when you need to get the list of factors associated with a factorgroup.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/list/factors` — Tool to retrieve a collection of factors from Rentman. Use when you need to fetch factor information with optional filtering and pagination.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/list/file/folders` — Tool to retrieve file folders collection from Rentman. Use when you need to list folders that files can be organized into, with optional pagination.
  - body: { limit?: integer, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/list/leave/requests` — Tool to retrieve leave requests collection from Rentman. Use when you need to work with leave requests and their information such as approval status, reviewer, and requested dates.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/list/leavemutation` — Tool to retrieve leave mutations collection from Rentman. Use when you need to list leave mutations and their information. Leave mutations are immutable records, so any mistakes should be corrected by
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/list/leaverequest/timeregistration` — Tool to get timeregistration collection for a specific leave request. Use when you need to retrieve time registrations linked to a leave request.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/list/leavetypes` — Tool to retrieve leave types collection from Rentman. Use when you need to work with leave types and their information, including properties like availability impact and approval requirements.
  - body: { sort?: string, limit?: integer, fields?: string, offset?: integer }
- `POST https://api.mcp.ai/api/rentman/list/serialnumber/actualcontent` — Tool to retrieve the actualcontent collection for a specific serialnumber item. Use when you need to get all actualcontent entries associated with a serialnumber ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/list/serialnumbers/equipmentassignedserials` — Tool to retrieve equipmentassignedserials collection for a specific serialnumber item. Use when you need to get all equipment assigned serials associated with a serialnumber ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rentman/list/stocklocations/vehicles` — Tool to retrieve vehicles collection for a stocklocation. Use when you need to get all vehicles associated with a specific stocklocation by its ID.
  - body: { id: integer }

## Example prompts
- "What can I do in Rentman?"
- "Show me a summary of my Rentman account"

## More
- Page: https://mcp.ai/rentman
- Agent spec (llms.txt): https://mcp.ai/rentman/llms.txt
- Postman collection: https://mcp.ai/rentman/postman.json
