@striderlabs/mcp-uber
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@striderlabs/mcp-uberGet fare estimate from 123 Main St to JFK Airport"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@striderlabs/mcp-uber
MCP server connector for Uber ride-sharing — request rides, get fare estimates, and track trips via browser automation.
Installation
npx @striderlabs/mcp-uberOr install globally:
npm install -g @striderlabs/mcp-uberRelated MCP server: mcp-turo
MCP Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"uber": {
"command": "npx",
"args": ["@striderlabs/mcp-uber"]
}
}
}Tools
status
Check Uber authentication and session status, including the current pickup/destination if set.
Name | Type | Required | Description |
(no parameters) |
login
Authenticate with Uber using email/phone and password via browser automation.
Name | Type | Required | Description |
| string | Yes | Uber account email address or phone number |
| string | Yes | Uber account password |
| boolean | No | Run browser in headless mode (default: |
Note: Uber often requires phone OTP verification. If OTP is triggered, run with
headless: falseto complete verification in the visible browser window, then callloginagain.
logout
Clear the Uber session and all stored cookies.
Name | Type | Required | Description |
(no parameters) |
set_pickup
Set the pickup location for a ride request. Persists across tool calls.
Name | Type | Required | Description |
| string | Yes | Pickup address (e.g., |
set_destination
Set the destination for a ride request. Persists across tool calls.
Name | Type | Required | Description |
| string | Yes | Destination address (e.g., |
get_fare_estimate
Get fare estimates for all available ride types between pickup and destination.
Name | Type | Required | Description |
| string | No | Override pickup address (uses stored pickup if not provided) |
| string | No | Override destination address (uses stored destination if not provided) |
| boolean | No | Run browser in headless mode (default: |
Note: Set pickup and destination first with
set_pickup/set_destination, or provide them directly as parameters.
get_ride_options
Get available ride types (UberX, Comfort, XL, Black, etc.) with pricing and ETAs for the current route.
Name | Type | Required | Description |
| string | No | Override pickup address |
| string | No | Override destination address |
| boolean | No | Run browser in headless mode (default: |
request_ride
Request an Uber ride. Returns a confirmation preview by default — does not automatically confirm.
Name | Type | Required | Description |
| string | No | Ride type (e.g., |
| boolean | No | Set |
| boolean | No | Run browser in headless mode (default: |
Warning: Setting
confirm: truewill attempt to place a real ride request. Make sure pickup, destination, and ride type are correct before confirming.
get_ride_status
Get the status of your current or most recent Uber ride.
Name | Type | Required | Description |
| boolean | No | Run browser in headless mode (default: |
cancel_ride
Cancel a pending or active Uber ride request.
Name | Type | Required | Description |
| boolean | No | Set |
| boolean | No | Run browser in headless mode (default: |
Note: A cancellation fee may apply if a driver has already been assigned. Review the cancellation policy before confirming.
get_ride_history
Get recent Uber ride history.
Name | Type | Required | Description |
| number | No | Number of recent trips to return (default: |
| boolean | No | Run browser in headless mode (default: |
For Agents
Agents can use this connector to autonomously request, track, and manage Uber rides on behalf of their human. Example agent flow:
Agent: "I need to get to JFK Airport. What's the cheapest ride available?"
The agent will:
Call
set_pickupwith the user's current locationCall
set_destinationwith "JFK Airport"Call
get_fare_estimateto compare UberX, Comfort, XL pricingReturn a summary of options and estimated wait times
Agent: "Request the UberX ride."
The agent will:
Call
request_ridewithride_type: "UberX"andconfirm: trueReceive a confirmation with driver ETA
Store the ride ID for tracking
Autonomously call
get_ride_statusat intervals to keep the user informed
This connector is designed to work in autonomous personal assistant scenarios where the agent has persistent access to the user's Uber account and makes ride decisions based on context (location, cost, time, preferences).
Typical Workflow
1. login → Authenticate with Uber
2. set_pickup → "Times Square, New York, NY"
3. set_destination → "JFK Airport, Queens, NY"
4. get_fare_estimate → Review prices for UberX, Comfort, XL, etc.
5. request_ride → Preview the ride (confirm: false)
6. request_ride → confirm: true to place the request
7. get_ride_status → Track your driver
8. cancel_ride → Cancel if needed (confirm: true)Session Storage
Sessions and route data are stored in:
~/.striderlabs/uber/
├── cookies.json # Browser session cookies
├── auth.json # Account metadata
└── route.json # Current pickup/destinationTechnical Details
Transport: stdio (MCP standard)
Browser: Chromium via Playwright with stealth patches
Stealth: Patches
navigator.webdriver, spoof plugins/languages, remove automation markersGeolocation: Defaults to New York City (40.7128, -74.006)
User Agent: Chrome 120 on macOS
Notes
OTP/Captcha: Uber may require phone OTP or CAPTCHA during login. Use
headless: falseto handle these manually.Fare Estimates: Available without login via uber.com/global/en/price-estimate/
Ride Requests: Require an active logged-in session.
Cancellation Fees: Uber may charge a fee if you cancel after a driver is assigned.
Mobile App: Uber is primarily a mobile app. The web interface (riders.uber.com) is used for automation, which may have different features than the mobile app.
License
MIT — Strider Labs
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/markswendsen-code/mcp-uber'
If you have feedback or need assistance with the MCP directory API, please join our Discord server