uber_get_auth_url
Generate an Uber authorization URL for user authentication, enabling access to Uber ride booking and management through the MCP Uber Server. Requires a unique user ID for operation.
Instructions
Get the Uber authorization URL for user to authenticate
Input Schema
Name | Required | Description | Default |
---|---|---|---|
userId | Yes | Unique identifier for the user |
Input Schema (JSON Schema)
{
"properties": {
"userId": {
"description": "Unique identifier for the user",
"type": "string"
}
},
"required": [
"userId"
],
"type": "object"
}