Ride-sharing service
## Uber MCP Server: Ride-Sharing Platform The **Uber MCP Server** integrates the global ride-sharing platform directly into Google Antigravity, enabling AI assistants to request rides, estimate fares, and manage transportation across the Uber network programmatically. This integration brings worldwide ride-sharing to your development workflow. ### Why Uber MCP? - **Global Coverage**: Access to rides in hundreds of cities worldwide - **Multiple Services**: Ride options from UberX to Black, plus Uber Eats integration - **Business Profiles**: Support for Uber for Business expense management - **Real-Time ETAs**: Accurate pickup and arrival time estimates - **Price Lock**: Lock in prices with upfront fare confirmation ### Key Features #### 1. Fare Estimates ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Get Uber fare estimates from Times Square to JFK Airport" }], tools=[{ "name": "uber_estimate", "description": "Get fare estimates" }] ) ``` #### 2. Ride Booking ```python # Book a ride response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Book an Uber Black from the hotel to the conference venue" }], tools=[{"name": "uber_request", "description": "Request rides"}] ) ``` #### 3. Trip Tracking ```python # Track active trip response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Track my current Uber ride and share the trip details" }], tools=[{"name": "uber_track", "description": "Track trips"}] ) ``` #### 4. Trip History ```python # Access trip history response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Get all my business Uber trips from last quarter with receipts" }], tools=[{"name": "uber_history", "description": "Trip history"}] ) ``` ### Configuration ```json { "mcpServers": { "uber": { "command": "npx", "args": ["-y", "@anthropic/mcp-uber"], "env": { "UBER_CLIENT_ID": "your-client-id", "UBER_CLIENT_SECRET": "your-client-secret" } } } } ``` ### Use Cases **Travel Coordination**: Integrate ride booking into travel and hospitality applications. **Business Travel**: Automate business travel transportation with expense categorization. **Event Management**: Coordinate ground transportation for conferences and events. **Delivery Integration**: Combine ride-sharing with delivery services for logistics apps. The Uber MCP Server brings global ride-sharing integration directly into your development workflow, enabling comprehensive transportation solutions.
{
"mcpServers": {
"uber": {
"mcpServers": {
"uber": {
"env": {
"UBER_CLIENT_ID": "your-client-id",
"UBER_CLIENT_SECRET": "your-secret"
},
"args": [
"-y",
"uber-mcp-server"
],
"command": "npx"
}
}
}
}
}