Pocket Drives
Server Details
Peer-to-peer car rental search — luxury, exotic, and EV vehicles with delivery across the US.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.7/5 across 9 of 9 tools scored.
Each tool targets a distinct aspect of the rental process: searching by location, vehicles, airports, venues; getting details, availability, reviews, quotes; and host profiles. No two tools overlap in purpose, ensuring clear agent selection.
All tools share the 'drives_' prefix and use snake_case, but the word order varies: some follow verb_noun (drives_get_quote, drives_search_vehicles), others noun_verb (drives_airport_search, drives_location_suggest), and some are noun_noun (drives_vehicle_availability, drives_host_showroom). This inconsistency makes the pattern less predictable.
With 9 tools, the server covers essential rental marketplace operations without excess. Each tool serves a clear role, and the count is well-scoped for its domain.
The tool set comprehensively covers browsing, searching, quoting, and reviewing vehicles, plus location and venue queries. A minor gap is the absence of a tool to create or manage bookings, but the server likely focuses on pre-booking information.
Available Tools
9 toolsdrives_airport_searchAirport searchBRead-onlyIdempotentInspect
Search airports for delivery pickup with delivery fee information.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum results | |
| query | Yes | Airport name or IATA code to search |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnly, idempotent, and non-destructive. Description adds context about delivery fee information but lacks details on rate limits, authentication, or result structure.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence that is front-loaded with the action. Every word is useful, though slightly terse.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple search tool with two parameters, the description gives a hint about output (delivery fees) but omits pagination, sorting, or response format. Adequate but not thorough.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% with adequate descriptions for 'limit' and 'query'. Description adds no extra meaning beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool searches airports and provides delivery fee information, distinguishing it from sibling tools like venue or vehicle search.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives. Does not mention when-not-to-use or specify prerequisites.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
drives_get_quoteGet rental quoteARead-onlyIdempotentInspect
Calculate a full rental quote including daily breakdown, taxes, deposit, and total for a date range.
| Name | Required | Description | Default |
|---|---|---|---|
| date_end | Yes | Rental end date (YYYY-MM-DD) | |
| date_start | Yes | Rental start date (YYYY-MM-DD) | |
| asset_rental_id | Yes | Rental asset ID from search or detail results |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=true, destructiveHint=false, idempotentHint=true. The description adds value by specifying what the quote includes (daily breakdown, taxes, deposit, total), which is useful behavioral context beyond the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no unnecessary words. It efficiently communicates the tool's purpose and scope.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 3 parameters and no output schema, the description provides a reasonable overview of what is calculated. However, it does not describe the return value format or any edge cases, leaving some gaps in completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with clear descriptions for all 3 parameters. The description does not repeat parameter details; it focuses on output, which is acceptable since the schema handles parameter semantics adequately.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool calculates a full rental quote with specific components (daily breakdown, taxes, deposit, total) for a date range. This distinct purpose is well differentiated from sibling tools like search and vehicle detail.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Usage is implied (after selecting a vehicle and dates), but no explicit guidance on when to use vs alternatives, prerequisites, or exclusions is provided. The context of a quote tool is fairly obvious, but the description does not clarify when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
drives_host_showroomHost showroom profileBRead-onlyIdempotentInspect
Get a host profile page with bio, locations, team, and social links by username.
| Name | Required | Description | Default |
|---|---|---|---|
| username | Yes | Host username slug, e.g. "luxury-garage-miami" |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false. The description adds no additional behavioral traits (e.g., auth requirements, rate limits, or side effects) beyond stating the read operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that is front-loaded with the verb and resource, containing no wasted words. Every part is essential.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read tool with one parameter and no output schema, the description adequately lists the returned fields (bio, locations, team, social links). It could mention response format or pagination, but the tool is straightforward enough that this is minor.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% with a clear example for the single parameter 'username'. The description does not add extra meaning beyond what the schema provides, so baseline score of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Get' and the resource 'host profile page', and lists specific content (bio, locations, team, social links). This distinctly separates it from sibling tools like drives_search_vehicles or drives_get_quote.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description does not provide any guidance on when to use this tool versus alternatives, nor does it mention prerequisites or exclusions. It only states the basic operation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
drives_location_suggestLocation suggestionsARead-onlyIdempotentInspect
Autocomplete cities, airports, and venues for search location input.
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | Suggestion mode filter | |
| limit | No | Maximum suggestions per category | |
| query | Yes | Partial location text to autocomplete |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering safety and idempotency. The description adds the specific types of location suggestions (cities, airports, venues) but does not disclose behavior like response format, pagination, or rate limits beyond what annotations provide.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence of 11 words, efficiently conveying the tool's purpose without any filler. It is front-loaded and easy to parse.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple autocomplete tool with 3 parameters, good annotations, and no output schema, the description is adequate. It tells the agent the input context and what types of suggestions are returned. However, it could be improved by mentioning the response format or any implicit constraints.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with clear descriptions for all three parameters. The description reinforces the overall purpose but does not add new semantic meaning beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Autocomplete cities, airports, and venues for search location input.' The verb 'autocomplete' and the specific resource categories (cities, airports, venues) distinguish it from sibling tools like drives_airport_search and drives_venue_search, which likely perform full searches rather than suggestions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides context ('for search location input') implying usage during autocomplete while typing. However, it does not explicitly state when to use this tool versus alternatives like drives_airport_search or drives_venue_search, nor does it mention when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
drives_search_vehiclesSearch vehiclesARead-onlyIdempotentInspect
Search the Pocket Drives marketplace for available rental vehicles by location, dates, category, and filters.
| Name | Required | Description | Default |
|---|---|---|---|
| lat | No | Latitude for radius search | |
| lng | No | Longitude for radius search | |
| make | No | Vehicle make filter | |
| page | No | Page number (default 1) | |
| model | No | Vehicle model filter | |
| query | No | Text search across make, model, and title | |
| radius | No | Search radius in miles when using lat/lng | |
| sort_by | No | Sort order, e.g. price_asc, price_desc, featured | |
| category | No | Category filter, e.g. luxury, sports, electric | |
| date_end | No | Rental end date (YYYY-MM-DD) | |
| features | No | Required feature keys | |
| location | No | City or region name, e.g. "Miami, FL" | |
| per_page | No | Results per page (default 20) | |
| venue_id | No | Filter by venue ID for delivery | |
| year_max | No | Maximum model year | |
| year_min | No | Minimum model year | |
| body_type | No | Body type filter, e.g. coupe, suv | |
| fuel_type | No | Fuel type filter, e.g. gasoline, electric | |
| max_price | No | Maximum daily price | |
| min_price | No | Minimum daily price | |
| seats_min | No | Minimum seat count | |
| airport_id | No | Filter by airport ID for delivery | |
| date_start | No | Rental start date (YYYY-MM-DD) | |
| drivetrain | No | Drivetrain filter, e.g. awd, rwd | |
| transmission | No | Transmission filter, e.g. automatic, manual | |
| featured_only | No | Only featured vehicles | |
| instant_booking | No | Only vehicles with instant booking | |
| organization_id | No | Filter to a specific host organization | |
| airport_iata_code | No | Filter by airport IATA code for delivery |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the description adds minimal behavioral context. It correctly implies a read-only search operation but does not disclose details like pagination limits, response structure, or rate limits. The description is consistent with annotations but does not meaningfully extend them.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single 17-word sentence that efficiently states the tool's purpose. Every word earns its place, and there is no redundancy or unnecessary detail. It is appropriately concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (29 parameters, no output schema), the description provides only a high-level overview. It does not explain search behavior, default sorting, or output format. While schema descriptions cover parameters and annotations cover safety, the description lacks completeness for an agent to fully understand the tool's behavior without additional exploration.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with descriptions for all 29 parameters. The description generically mentions filtering by 'location, dates, category, and filters' but adds no specific meaning beyond the schema. Per guidelines, high coverage sets a baseline of 3, which is appropriate as the description does not enhance parameter understanding.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Search' and the resource 'vehicles' in the Pocket Drives marketplace. It lists key filtering dimensions (location, dates, category, filters). However, it does not differentiate from sibling tools like drives_vehicle_availability or drives_venue_search, which limits its clarity for tool selection.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for searching available rental vehicles with various filters. It mentions filtering by location, dates, category, etc., which gives some context. However, it does not provide explicit guidance on when to use this tool versus alternatives like drives_vehicle_availability for availability checks or drives_venue_search for venue searches, leaving the agent to infer.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
drives_vehicle_availabilityVehicle availabilityARead-onlyIdempotentInspect
Get a monthly availability calendar with daily rates for a vehicle.
| Name | Required | Description | Default |
|---|---|---|---|
| year | No | Four-digit year; defaults to current year | |
| month | No | Month number (1-12); defaults to current month | |
| asset_rental_id | Yes | Rental asset ID from search or detail results |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint. The description adds minimal behavioral context (monthly, daily rates) beyond annotations, but does not mention response structure or edge cases.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence of 12 words, front-loaded with the key verb and resource, no wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema, the description could better describe the return format (e.g., list of days with rates). It is adequate but not comprehensive.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so baseline is 3. The description reinforces the purpose but adds no new semantic detail beyond what schema provides for parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Get', the resource 'monthly availability calendar with daily rates', and the target 'a vehicle', distinguishing it from sibling tools like drives_vehicle_detail or drives_get_quote.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for obtaining availability calendars but provides no explicit guidance on when to use this tool over alternatives or when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
drives_vehicle_detailVehicle detailARead-onlyIdempotentInspect
Get full details for a specific vehicle including rates, host info, and organization policies.
| Name | Required | Description | Default |
|---|---|---|---|
| asset_id | Yes | Vehicle asset ID from search results | |
| organization_id | Yes | Host organization ID from search results |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint=true, destructiveHint=false, idempotentHint=true, openWorldHint=true, covering safety and idempotency. The description adds value by specifying the scope of data returned (rates, host info, policies), which is beyond annotation capabilities.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence that efficiently communicates purpose and content. No redundant words or unnecessary elaboration.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the key aspects of the tool's output. While no output schema is provided, the description adequately sets expectations for what 'full details' includes. Minor gap: could mention that it returns data for a single vehicle.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Input schema has 100% coverage with clear descriptions for both parameters. The description does not add additional meaning beyond what the schema already provides, so a baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Get full details') and the resource ('a specific vehicle'), along with specific content types (rates, host info, organization policies). It distinguishes from sibling tools like drives_search_vehicles (search) and drives_vehicle_availability (availability).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when you have a specific vehicle ID and need comprehensive details. While it doesn't explicitly state when not to use or name alternatives, the context is clear given the tool's specific purpose and the sibling tools cover different tasks.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
drives_vehicle_reviewsVehicle reviewsARead-onlyIdempotentInspect
List published renter reviews for a vehicle. Uses asset_id (not asset_rental_id) per the GraphQL schema.
| Name | Required | Description | Default |
|---|---|---|---|
| skip | No | Number of reviews to skip for pagination | |
| limit | No | Maximum reviews to return (default server limit) | |
| asset_id | Yes | Vehicle asset ID from search or detail results | |
| published_only | No | Only return published reviews (default true) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark the tool as read-only, non-destructive, and idempotent. The description adds context by clarifying that it uses asset_id (not asset_rental_id), which is valuable behavioral information beyond the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the main purpose, and contains no unnecessary words. Every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description adequately explains what the tool does and the key parameter, but does not mention the response format or pagination behavior. Given no output schema, a brief note on expected output would improve completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage for all 4 parameters. The description adds extra value by explicitly stating the use of asset_id over asset_rental_id, which is not conveyed in the schema description alone.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'List published renter reviews for a vehicle', using a specific verb and resource. The sibling tools (e.g., drives_vehicle_detail, drives_search_vehicles) serve different purposes, so this tool is well-distinguished.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implicitly indicates when to use this tool (to get reviews) and specifies the required asset_id parameter. However, it does not explicitly say when not to use it or mention alternatives, though no sibling tool overlaps.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
drives_venue_searchVenue searchARead-onlyIdempotentInspect
Search stadiums, arenas, and venues for delivery pickup with delivery fee information.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum results | |
| query | Yes | Venue name or city to search |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint, idempotentHint, openWorldHint, and non-destructive behavior. Description adds context about returning delivery fee information, but doesn't disclose additional behavioral traits beyond annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence effectively communicates the tool's purpose with no redundancy. Could be slightly more structured but is efficient and front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (2 params, no output schema), the description provides core purpose and mentions delivery fee info, but lacks details on return format or pagination. Adequate but not comprehensive.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with both parameters described. The description does not add any additional meaning or usage details beyond the schema, so baseline score of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states it searches stadiums, arenas, and venues for delivery pickup with delivery fee info, distinguishing it from the sibling tool drives_airport_search which likely focuses on airports.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use this tool versus alternatives like drives_airport_search. The description implies use for venue searches but does not specify exclusions or when-not scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseAqualityBmaintenanceRent GPUs, robots, drones, and construction gear on RIGShare; also onboards equipment owners.780MIT
- Alicense-qualityDmaintenanceSubmarket-level US residential rental intelligence for AI agents. Search, compare, rank, and analyze rent data, trends, vacancy, affordability, and days on market across 1,000+ named submarkets in the 20+ largest US metros. ZIP-level and metro-level queries included. Always current, always expanding. Free tier available.1MIT
- AlicenseAqualityDmaintenanceEnables AI assistants to search for vehicles, manage reservations, and access Enterprise Plus loyalty account information through headless browser automation on enterprise.com. It supports the complete car rental workflow including vehicle searching, booking, modifications, and points balance checks.279MIT
- AlicenseAqualityDmaintenanceAggregates and searches used car listings from multiple sources (Cars.com, Autotrader, KBB) with price, mileage, dealer info, and optional CarFax-style filters (1-owner, no accidents, personal use).13MIT