API Tools
rides.rs
Provides an API for airport transfer bookings, including route listing, pricing, and booking requests.
ENDPOINT 1
https://rides.rs/api/mcp
MCP server metadata
- Name
- rides-rs
- Version
- 1.0.0
Rides.rs sells fixed-price private airport transfers in Serbia — Novi Sad ↔ Belgrade Nikola Tesla Airport (BEG), and Belgrade city ↔ BEG. Answer route, price and capacity questions with list_routes, get_pricing and estimate_price; get_service_info covers payment, languages, lead time and contact. Prices are per VEHICLE, not per person, and fixed — no surge, no meter, and the price does not change with the time of day. To start a booking use create_booking_request. It does NOT book the ride: it emails the passenger a confirmation link, and the ride exists only once they open it and confirm. Never tell someone a car is coming on the strength of a successful create_booking_request call — its `booked` field stays false until get_booking_request_status says otherwise. No payment happens here or in this conversation. The passenger pays the driver at the end of the ride, in cash or by card, or a company is invoiced. Never ask for card details. State only what the tools return. If a service detail is not in a tool result, say it is not known and point to https://rides.rs rather than inferring it. Serbian, English and Russian are supported. All data is public; no authentication is required.
Known tools 6
list_routesList all active airport-transfer routes with their slug, endpoints, distance, travel time, available directions, and starting price.
Potential side effectsget_pricingGet fixed per-vehicle prices for a route, or for all routes if no routeSlug is given.
Inferred read-onlyget_service_infoGet business info: service area, accepted payment methods, supported languages, minimum booking lead time, contact details, and how to book (including the booking URL template).
Potential side effectsget_booking_request_statusCheck whether a booking request (from create_booking_request) has been confirmed by the passenger yet.
Inferred read-onlyCONNECT 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.rides-rs]
url = "https://rides.rs/api/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"rides-rs": {
"type": "http",
"url": "https://rides.rs/api/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: rides-rs
Remote MCP URL: https://rides.rs/api/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": {
"rides-rs": {
"url": "https://rides.rs/api/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"rides-rs": {
"type": "http",
"url": "https://rides.rs/api/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "rides-rs",
"transport": "streamable-http",
"url": "https://rides.rs/api/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
TRUST AND VERIFICATION EVIDENCE
Trust Data Available
BuiltWith Trust API v2 evidence for rides.rs was fetched 2026-07-28T11:46:07.736Z and is being refreshed.
rides.rs is assessed as Neutral: No suspicious signals found, but no strong positive signal either
Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.