← noorcarrental.ch

INDIVIDUAL MCP TOOL

check_availability

Which cars are free for a period and which are already taken.

noorcarrental.chnone authenticationAvailability not checked

LIVE ENDPOINT

https://www.noorcarrental.ch/mcp

No auth detected

Connect to this endpoint to inspect the live schema for check_availability 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

noorcarrental.ch

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.
  • 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.
  • 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.
  • 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.