Skip to main content
Glama
199-mcp
by 199-mcp

Server Quality Checklist

67%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v1.0.0

  • Disambiguation5/5

    Each tool has a clearly distinct purpose with no overlap: authorization (get_auth_url, set_access_token), ride lifecycle (request_ride, get_ride_status, cancel_ride), and price estimation (get_price_estimates). The descriptions reinforce these distinct roles, making tool selection straightforward for an agent.

    Naming Consistency5/5

    All tools follow a consistent 'uber_verb_noun' pattern with snake_case throughout (e.g., uber_cancel_ride, uber_get_price_estimates). This predictability makes the tool set easy to navigate and understand at a glance.

    Tool Count5/5

    With 6 tools, this server is well-scoped for its Uber ride-hailing domain. It covers essential operations without bloat: authentication, price checks, ride requests, status tracking, and cancellation. Each tool earns its place in supporting a complete workflow.

    Completeness5/5

    The tool set provides complete coverage for the Uber ride lifecycle: authentication (get_auth_url, set_access_token), pre-ride (get_price_estimates), active ride (request_ride, get_ride_status, cancel_ride). There are no obvious gaps; agents can handle the full process from login to ride completion or cancellation.

  • Average 3.1/5 across 6 of 6 tools scored.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 0 commits in the last 12 weeks
    • No stable releases found
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI status not available
  • This repository is licensed under ISC License.

  • This repository includes a README.md file.

  • No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.

    Tip: use the "Try in Browser" feature on the server page to seed initial usage.

  • Add a glama.json file to provide metadata about your server.

  • If you are the author, simply .

    If the server belongs to an organization, first add glama.json to the root of your repository:

    {
      "$schema": "https://glama.ai/mcp/schemas/server.json",
      "maintainers": [
        "your-github-username"
      ]
    }

    Then . Browse examples.

  • Add related servers to improve discoverability.

How to sync the server with GitHub?

Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.

To manually sync the server, click the "Sync Server" button in the MCP server admin interface.

How is the quality score calculated?

The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).

Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.

Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).

Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.

Tool Scores

  • Behavior2/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool's function but doesn't reveal critical traits such as whether it's a read-only operation, if it requires authentication, potential rate limits, or what the output looks like (e.g., estimated price range, ride options). This leaves significant gaps for an agent to understand how to interact with it effectively.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is a single, efficient sentence that front-loads the key action and resource without any wasted words. It's appropriately sized for a straightforward tool, making it easy for an agent to parse quickly.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness2/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Given the tool's complexity (5 required parameters, no annotations, no output schema), the description is insufficiently complete. It doesn't address behavioral aspects like authentication needs, output format, or error handling, which are crucial for an agent to use the tool correctly in real-world scenarios. The high parameter count and lack of structured support amplify this gap.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters3/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    Schema description coverage is 100%, with all parameters clearly documented in the input schema (e.g., 'userId', latitude/longitude pairs). The description adds minimal value beyond this, only implying that parameters define start and end locations without providing additional context like coordinate formats or user ID requirements. This meets the baseline for high schema coverage.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly states the action ('Get price estimates') and resource ('for a ride between two locations'), making the purpose immediately understandable. However, it doesn't differentiate this from potential sibling tools like 'uber_request_ride' which might also involve pricing, though the distinction is somewhat implied through the 'estimates' keyword.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines2/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description provides no explicit guidance on when to use this tool versus alternatives like 'uber_request_ride' or 'uber_get_ride_status'. It mentions the core function but lacks context about prerequisites (e.g., whether authentication is needed) or typical use cases (e.g., planning vs. booking).

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior2/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool retrieves status, implying a read-only operation, but doesn't cover critical aspects like authentication requirements, rate limits, error conditions, or what the status response includes (e.g., driver location, ETA). This leaves significant gaps for safe and effective use.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is a single, efficient sentence that directly states the tool's purpose without unnecessary words. It's front-loaded and wastes no space, making it easy for an agent to parse quickly.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness2/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Given the complexity of a ride status tool with no annotations and no output schema, the description is incomplete. It doesn't explain what the status includes (e.g., pending, en route, completed), how to interpret results, or error handling, which are essential for an agent to use this tool effectively in real-world scenarios.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters3/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The input schema has 100% description coverage, clearly documenting both required parameters ('userId' and 'requestId'). The description doesn't add any meaning beyond the schema, such as explaining how to obtain these IDs or their format, but the schema's completeness justifies the baseline score of 3.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly states the tool's purpose with a specific verb ('Get') and resource ('current status of a ride request'), making it easy to understand what it does. However, it doesn't explicitly differentiate from sibling tools like 'uber_get_auth_url' or 'uber_get_price_estimates', which prevents a perfect score.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines2/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., needing a ride request ID from 'uber_request_ride'), exclusions, or comparisons to siblings like 'uber_cancel_ride', leaving the agent to infer usage context.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior2/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    With no annotations provided, the description carries full burden for behavioral disclosure. 'Request an Uber ride' implies a write/mutation operation that likely requires authentication, triggers real-world consequences (ride dispatch), and may have rate limits or payment implications, but none of these behavioral traits are mentioned. The description is minimal and fails to address critical operational aspects.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is extremely concise at just three words, with zero wasted language. It's front-loaded with the core action and resource. While this conciseness comes at the cost of completeness, as a standalone statement it's efficiently structured.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness2/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Given the complexity of a ride-request tool (real-world mutation with financial implications), no annotations, no output schema, and 7 parameters, the description is inadequate. It doesn't address authentication needs, response format, error conditions, or how this fits with sibling tools. The minimal description fails to provide sufficient context for safe and effective use.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters3/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The input schema has 100% description coverage, providing clear documentation for all 7 parameters. The tool description adds no additional parameter semantics beyond what's in the schema, so it meets the baseline of 3. However, it doesn't explain relationships between parameters (e.g., that fareId from price estimates is optional but recommended) or usage patterns.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description 'Request an Uber ride' clearly states the action (request) and resource (Uber ride), making the purpose immediately understandable. However, it doesn't differentiate from sibling tools like 'uber_cancel_ride' or 'uber_get_ride_status', which would require more specific language about initiating a new ride request versus managing existing ones.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines2/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description provides no guidance on when to use this tool versus alternatives like 'uber_get_price_estimates' (which might be needed first to obtain productId/fareId) or 'uber_cancel_ride' (for post-request actions). It lacks context about prerequisites, timing, or workflow relationships with sibling tools.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior2/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    With no annotations provided, the description carries the full burden of behavioral disclosure. It states the action ('Cancel') but lacks details on side effects (e.g., cancellation fees, refund policies), permissions required, rate limits, or error conditions. This is inadequate for a mutation tool with zero annotation coverage.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is a single, efficient sentence with zero waste. It is front-loaded with the core action and resource, making it easy to parse. Every word earns its place by directly contributing to understanding the tool's purpose.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness2/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Given the tool's complexity as a mutation operation with no annotations and no output schema, the description is incomplete. It fails to address critical aspects like return values, error handling, or behavioral implications (e.g., irreversible changes). This leaves significant gaps for an AI agent to use the tool effectively.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters3/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    Schema description coverage is 100%, with both parameters ('userId' and 'requestId') documented in the schema. The description does not add any parameter-specific details beyond what the schema provides, such as format examples or contextual usage. The baseline score of 3 reflects adequate but minimal value addition.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly states the specific action ('Cancel') and resource ('an ongoing ride request'), distinguishing it from sibling tools like 'uber_request_ride' (create) or 'uber_get_ride_status' (read). It uses precise language that directly communicates the tool's function without ambiguity.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines2/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description provides no guidance on when to use this tool versus alternatives. It does not mention prerequisites (e.g., needing an active ride request), exclusions (e.g., cannot cancel completed rides), or comparisons with sibling tools like 'uber_get_ride_status' for checking status first. Usage is implied but not explicitly defined.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior2/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool retrieves an authorization URL but doesn't describe what the URL is used for, whether it's one-time use, expiration behavior, required user interaction, or error handling. For an authentication tool with zero annotation coverage, this is a significant gap.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is a single, efficient sentence that directly states the tool's purpose with zero waste. It is appropriately sized and front-loaded, making it easy to parse quickly.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness2/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Given the complexity of authentication flows, no annotations, and no output schema, the description is incomplete. It doesn't explain what the authorization URL is, how it should be used, what the expected output format is, or potential errors. For a tool with critical security implications, this leaves significant gaps.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters3/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The schema description coverage is 100%, with the single parameter 'userId' documented as 'Unique identifier for the user'. The description adds no additional parameter semantics beyond what the schema provides, so the baseline score of 3 is appropriate given the schema does the heavy lifting.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly states the tool's purpose with a specific verb ('Get') and resource ('Uber authorization URL'), and specifies the target ('for user to authenticate'). It distinguishes itself from siblings like ride management tools, though it doesn't explicitly differentiate from potential authentication-related siblings (none exist in the list).

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines3/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description implies usage in authentication flows but provides no explicit guidance on when to use this tool versus alternatives (e.g., uber_set_access_token for token management) or prerequisites. It suggests a context of user authentication but lacks details on timing or integration steps.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior2/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    No annotations are provided, so the description carries full burden. It mentions setting an access token, implying a write/mutation operation, but doesn't disclose behavioral traits like whether this overwrites existing tokens, requires specific permissions, or has side effects like rate limits or authentication changes.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is a single, efficient sentence that front-loads the purpose without unnecessary details. It earns its place by clearly stating the tool's function and context, with zero waste.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness2/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Given no annotations, no output schema, and a mutation tool (implied by 'Set'), the description is incomplete. It lacks details on what happens after setting the token, error conditions, or how this integrates with other Uber tools, leaving gaps for an AI agent to understand full behavior.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters3/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    Schema description coverage is 100%, so the schema already documents both parameters ('userId' and 'accessToken') adequately. The description doesn't add meaning beyond what the schema provides, such as explaining token format or user context, but baseline 3 is appropriate given high schema coverage.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly states the action ('Set') and resource ('access token for a user'), specifying it occurs 'after OAuth callback'. However, it doesn't distinguish this from sibling tools like 'uber_get_auth_url', which might also relate to authentication flow.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines3/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description implies usage context ('after OAuth callback'), suggesting when to use this tool, but doesn't explicitly state when not to use it or name alternatives. For example, it doesn't clarify if this is for initial token setup versus token refresh.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues.
  • Evaluate tool definition quality.

Our badge communicates server capabilities, safety, and installation instructions.

Card Badge

mcp-uber MCP server

Copy to your README.md:

Score Badge

mcp-uber MCP server

Copy to your README.md:

Latest Blog Posts

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/199-mcp/mcp-uber'

If you have feedback or need assistance with the MCP directory API, please join our Discord server