Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

Rovv - Book Rides in Africa

REMOTE · ROVVAFRICA.COM · SCANNED AUG 3

Book rides, get fare estimates, and manage trips across African cities with Rovv.

Available components

24 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. How we score →

Endpoint Security60
Transport & Reachability0
Schema Quality & AI Usability0
  • Schema not yet verified: we couldn't read the endpoint's schema.Unverified
Stability & Change Management0
  • Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage0
  • Tool coverage not yet verified: we couldn't read the endpoint's tools.Unverified
Capabilities0
  • Capabilities not yet verified: we couldn't read the endpoint's capabilities.Unverified

Unverified: 4 categories

Categories scored 0 because we could not verify them: authentication we do not have, an unreachable endpoint, or not enough scan history. We only credit what we can confirm.

Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

remote · rovvafrica.com

# add to Claude Code
claude mcp add --transport http com-rovvafrica-ride-booking https://rovvafrica.com/api/v1/mcp
# ~/.codex/config.toml
[mcp_servers.com-rovvafrica-ride-booking]
url = "https://rovvafrica.com/api/v1/mcp"
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "com-rovvafrica-ride-booking": {
      "type": "remote",
      "url": "https://rovvafrica.com/api/v1/mcp",
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add com-rovvafrica-ride-booking --url https://rovvafrica.com/api/v1/mcp --transport streamable-http
# ~/.hermes/config.yaml
mcp_servers:
  com-rovvafrica-ride-booking:
    url: "https://rovvafrica.com/api/v1/mcp"
// mcp.json
{
  "mcpServers": {
    "com-rovvafrica-ride-booking": {
      "type": "http",
      "url": "https://rovvafrica.com/api/v1/mcp"
    }
  }
}

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 2 Aug 26 −37
    • Endpoint reachability: reachable → not serving MCP security
    • Transport: pass → fail security
    • Authorization: Authorisation not fully verified: no authorisation is required to connect, but we couldn't read the tool list to see what that exposes. security
    • Capabilities: fail → unverified functional
    • Tool coverage: 100 → unverified functional
    • First check of Schema quality: unverified functional
  • 1 Aug 26 61

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Probed https://rovvafrica.com/api/v1/mcp

TLS valid

Negotiated TLS 1.3 with TLS_AES_128_GCM_SHA256 .

Subject Issuer Valid from Valid until Key Signature Serial
CN=backend.jetrideapp.com CN=YR1,O=Let's Encrypt,C=US 28 Jun 2026 26 Sept 2026 RSA 2048 SHA256-RSA 53400d9269150495bb522423eec8e74bf8a
SANs: backend.jetrideapp.com, rovvafrica.com, www.rovvafrica.com
CN=YR1,O=Let's Encrypt,C=US (CA) CN=Root YR,O=ISRG,C=US 3 Sept 2025 2 Sept 2028 RSA 2048 SHA256-RSA a20253f15f2691c05dc1ce13b9bcca4e
CN=Root YR,O=ISRG,C=US (CA) CN=ISRG Root X1,O=Internet Security Research Group,C=US 13 May 2026 2 Sept 2032 RSA 4096 SHA256-RSA f24b6d17f9d9ad7cb1c9fea78782699f
DNSSEC secure

Validation of rovvafrica.com. Secure

Zone DS Keys Algorithms Outcome
. trust_anchor 20326, 38696 8, 8 Verified
com. present 19718 13 Verified
rovvafrica.com. present 53764 13 Verified
rovvafrica.com. Verified address RRset verified with the apex keys
Authentication No authorisation required

The endpoint answered without asking for a token. Anyone who knows the URL can reach it.

Result No authorisation required
HTTP status 500
Transports 2 probes
Transport URL Outcome Status Location
streamable-http https://rovvafrica.com/api/v1/mcp HTTP error 500
http (plaintext) http://rovvafrica.com/api/v1/mcp HTTPS enforced 301 https://rovvafrica.com/api/v1/mcp
MCP tools — 8 exposed · ~667 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
book_ride ~192

Book a Rovv ride. Requires pickup/dropoff coordinates, a vehicle_type ID (from get_fare_estimate), and payment method. Returns booking confirmation with ride number.

NameTypeReqDescription
drop_addressstringyesDropoff address text
drop_latnumberyesDropoff latitude
drop_lngnumberyesDropoff longitude
is_laterbooleanSet to true for scheduled rides
payment_optintegerPayment method: 0 = card, 1 = cash, 2 = wallet
pick_addressstringyesPickup address text
pick_latnumberyesPickup latitude
pick_lngnumberyesPickup longitude
trip_start_timestringFor scheduled rides: datetime in Y-m-d H:i:s format
vehicle_typestringyesThe zone_type_id from get_fare_estimate results

No output schema declared.

No examples provided.

cancel_ride ~55

Cancel an active ride. Optionally provide a reason.

NameTypeReqDescription
reasonstringOptional cancellation reason
request_idstringThe ride request ID to cancel. If not provided, cancels the current active ride.

No output schema declared.

No examples provided.

get_current_ride ~30

Get the status of the user's current active ride, including driver details, ETA, and ride status.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

get_fare_estimate ~109

Get available vehicle types and fare estimates for a trip. Returns a list of vehicle options with prices, ETAs, and vehicle type IDs needed for booking.

NameTypeReqDescription
drop_addressstringDropoff address text
drop_latnumberyesDropoff latitude
drop_lngnumberyesDropoff longitude
pick_addressstringPickup address text
pick_latnumberyesPickup latitude
pick_lngnumberyesPickup longitude

No output schema declared.

No examples provided.

get_place_details ~63

Get the exact coordinates and full address for a place using its place_id (returned from search_places). Call this after search_places to get lat/lng needed for fare estimates and booking.

NameTypeReqDescription
place_idstringyesThe Google place_id from a search_places result

No output schema declared.

No examples provided.

get_ride_history ~44

Get the user's past ride history. Returns recent completed and cancelled rides.

NameTypeReqDescription
limitintegerNumber of rides to return (default 5, max 20)

No output schema declared.

No examples provided.

get_route_info ~69

Get driving route information between two points including distance, duration, and polyline.

NameTypeReqDescription
drop_latnumberyesDropoff latitude
drop_lngnumberyesDropoff longitude
pickup_latnumberyesPickup latitude
pickup_lngnumberyesPickup longitude

No output schema declared.

No examples provided.

search_places ~105

Search for a location by name. Returns a list of matching places with addresses. Use this to find the pickup or dropoff location before booking a ride.

NameTypeReqDescription
latnumberOptional latitude to bias results toward the user's area
lngnumberOptional longitude to bias results toward the user's area
querystringyesThe place name or address to search for, e.g. "Lekki Phase 1" or "Murtala Muhammed Airport"

No output schema declared.

No examples provided.