← rides.rs
INDIVIDUAL MCP TOOL
get_pricing
Get fixed per-vehicle prices for a route, or for all routes if no routeSlug is given.
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 endpoint
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.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.
Related tools
list_routes— List all active airport-transfer routes with their slug, endpoints, distance, travel time, available directions, and starting price.estimate_price— Estimate the price for a trip.get_service_info— Get business info: service area, accepted payment methods, supported languages, minimum booking lead time, contact details, and how to book (including the booking URL template).create_booking_request— Start a provisional airport-transfer booking.get_booking_request_status— Check whether a booking request (from create_booking_request) has been confirmed by the passenger yet.