INDIVIDUAL MCP TOOL
list_pickup_slots
The times a car can be picked up or returned on one day, 30 minutes apart, and the earliest day a booking may start.
LIVE ENDPOINT
https://www.noorcarrental.ch/mcp
Connect to this endpoint to inspect the live schema for list_pickup_slots and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- No write-capable action terms were found; this is not proof that invocation has no side effects.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.noor-car-rental]
url = "https://www.noorcarrental.ch/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"noor-car-rental": {
"type": "http",
"url": "https://www.noorcarrental.ch/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: noor-car-rental
Remote MCP URL: https://www.noorcarrental.ch/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"noor-car-rental": {
"url": "https://www.noorcarrental.ch/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"noor-car-rental": {
"type": "http",
"url": "https://www.noorcarrental.ch/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "noor-car-rental",
"transport": "streamable-http",
"url": "https://www.noorcarrental.ch/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
search_vehicles— The 5 cars Noor Car Rental hires out, with their specification, their undiscounted daily rate in CHF and their page URL.get_vehicle— Look up a single car by its slug.check_availability— Which cars are free for a period and which are already taken.quote_booking— Price a rental the way the shop will: the daily rate, the duration discount, the extras and the deposit all come from the shop's own tables.create_booking— Reserve a car and return the Stripe Checkout page for its rental.get_booking_status— The state of one booking — opened, paid, reserved, completed or cancelled — with the car, the period, the amounts and what the customer still has to do.