mcp-server
Server Details
AI agent access to NomadStays accommodation search, availability, and help center data.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- nomadstays/nomadstays-mcp-server
- GitHub Stars
- 0
- Server Listing
- Nomad Stays
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
Score is being calculated. Check back soon.
Available Tools
15 toolscheckStayAvailabilityBInspect
Check if a specific stay is available for given check-in and check-out dates
| Name | Required | Description | Default |
|---|---|---|---|
| stayId | Yes | The unique identifier of the stay | |
| checkIn | Yes | Check-in date in ISO format (YYYY-MM-DD) | |
| checkOut | Yes | Check-out date in ISO format (YYYY-MM-DD) | |
| roomType | No | Optional specific room type to check availability for |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the full burden of behavioral disclosure. It states the tool checks availability but does not describe the return format (e.g., boolean, availability status), edge cases (e.g., invalid stay ID, overlapping dates), or any side effects. This leaves ambiguity for the agent.
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 concise sentence with no redundant information. It is appropriately sized for a simple tool, though it could be slightly improved by front-loading the purpose more directly.
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 (check availability for a specific stay) and the rich sibling context, the description is adequate but not thorough. It lacks details on return values or error handling, but for a boolean check, it is minimally sufficient.
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 the baseline is 3. The description adds no additional meaning beyond what the schema already provides for each parameter. The field names and schema descriptions are sufficient to understand usage.
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 checks availability for a specific stay given dates. It uses a specific verb ('Check') and resource ('stay availability'), distinguishing it from sibling tools that search or list available stays or other attributes.
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 use when you have a specific stay ID and dates, but provides no explicit guidance on when to use this tool versus alternatives like findNearestAvailability or getRoomAvailability, nor any exclusions or prerequisites.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
findNearestAvailabilityInspect
Find the nearest available dates when requested dates are not available
| Name | Required | Description | Default |
|---|---|---|---|
| stayId | Yes | The unique identifier of the stay | |
| maxLengthOfStay | No | Maximum length of stay in days (optional) | |
| minLengthOfStay | Yes | Minimum length of stay in days | |
| preferredCheckIn | Yes | Preferred check-in date in ISO format (YYYY-MM-DD) | |
| searchWindowDays | No | Number of days before and after preferred date to search (default: 90) |
getAllAmenitiesAInspect
List all possible amenities grouped into Stay vs Room (database-wide)
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full behavioral disclosure burden. It discloses grouping behavior but does not mention side effects, authorization needs, or performance implications.
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, well-structured sentence that front-loads the key action and scope, with 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 the tool's simplicity (no params, no output schema), the description sufficiently covers purpose and grouping. However, it omits details about output format (e.g., array vs object), which could be inferred but not explicit.
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?
With zero parameters and schema coverage at 100%, the description adds value by clarifying the 'database-wide' scope, effectively explaining why no parameters are needed.
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 'list' and resource 'amenities', and provides crucial grouping context ('Stay vs Room') and scope ('database-wide'), which distinguishes it from siblings like getRoomAmenities.
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 use for a broad overview of amenities but does not explicitly contrast with sibling tools or specify when not to use it. Lacks guidance on alternatives or prerequisites.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
getAllLifestylesAInspect
Get all available lifestyle categories
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
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. The tool has no parameters and is clearly a read-only operation, which is implied by 'Get all'. However, the description does not explicitly state that it is non-destructive, idempotent, or safe to call. For a simple list retrieval, this is adequate but not exemplary.
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 perfectly concise and front-loaded with the key action. It contains no filler and earns its place.
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 tool is simple with no parameters and no output schema. The description sufficiently explains what it returns (lifestyle categories). It could be improved by noting the return format (e.g., 'returns an array of category objects with IDs and names'), but this is optional given the tool's simplicity.
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 tool has zero parameters and the schema is empty (100% coverage). The description adds no parameter information, which is acceptable since there are no inputs. According to the rubric, 0 parameters yields a baseline of 4, and this score 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 'Get all available lifestyle categories', specifying a clear verb and resource. However, it does not explicitly distinguish itself from sibling tools like getStaysByLifestyle, which might cause confusion about whether this tool returns categories or filtered stays. The purpose is clear but lacks sibling differentiation.
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 is provided on when to use this tool versus alternatives. For example, it does not mention that this tool is a prerequisite for getStaysByLifestyle or that it returns a list of categories that can be used as filters elsewhere. Without usage context, the agent may misuse the tool or miss its relationship to other tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
getAvailabilityByMonthCInspect
Get all available booking windows in a specific month
| Name | Required | Description | Default |
|---|---|---|---|
| year | Yes | Year (e.g., 2026) | |
| month | Yes | Month number (1-12, where 1=January, 12=December) | |
| stayId | Yes | The unique identifier of the stay | |
| minLengthOfStay | Yes | Minimum length of stay in days required |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so the description carries full burden. It discloses that the tool returns 'available booking windows' for a month, but does not explain how availability is determined, pagination, ordering, or any side effects. Minimal behavioral context.
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 wasted words. However, it could be slightly expanded to clarify what a 'booking window' is without becoming verbose.
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 presence of multiple sibling availability tools and no output schema, the description lacks detail on return format, edge cases, or when to prefer this tool. It is too brief for the complexity.
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% description coverage, so baseline is 3. The description adds no extra meaning beyond what the schema provides for parameters like stayId, year, month, and minLengthOfStay.
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') and the resource ('all available booking windows in a specific month'). It distinguishes from siblings like 'checkStayAvailability' which checks a single date, but does not explicitly differentiate itself.
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 siblings like 'checkStayAvailability', 'findNearestAvailability', or 'getRoomAvailability'. The description only states what it does, not when it's appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
getRoomAmenitiesInspect
Get comprehensive list of all facilities and amenities for a specific room
| Name | Required | Description | Default |
|---|---|---|---|
| roomId | Yes | The unique identifier of the room |
getRoomAvailabilityInspect
Check which specific rooms at a stay are available for given dates
| Name | Required | Description | Default |
|---|---|---|---|
| stayId | Yes | The unique identifier of the stay | |
| checkIn | Yes | Check-in date in ISO format (YYYY-MM-DD) | |
| checkOut | Yes | Check-out date in ISO format (YYYY-MM-DD) |
getStayByIDAInspect
Get detailed information about a specific stay by its ID
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The unique identifier of the stay |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations; description implies read-only operation. Adequate but lacks details on side effects, permissions, or rate limits.
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, no waste, front-loaded with key action and resource.
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?
Sufficient for a simple get-by-ID tool with one parameter; could mention return format but not critical.
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 100% and description adds no extra meaning beyond the schema's parameter description; baseline score.
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?
Clear verb 'get' and resource 'detailed information about a specific stay' with method 'by its ID'. Distinct from sibling tools that handle availability, amenities, etc.
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?
Implied usage (when you have a stay ID and need details), but no explicit when-to-use or alternatives provided despite many sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
getStaysByAmenitiesInspect
Find stays that include specific amenities across stay- and room-level facilities. Supports 'any' or 'all' matching and optional WiFi speed filter.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of results to return (default: 25) | |
| amenities | Yes | Array of amenity names to search for (e.g., ['WiFi', 'Air Conditioning', 'Pool']). | |
| matchType | No | Match any amenity (default) or require all amenities | |
| minWifiSpeed | No | Minimum WiFi download speed in Mbps (default: 0) |
getStaysByBudgetInspect
Search for stays within a budget and duration. Country is optional - searches globally if not specified.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of results (default: 15) | |
| currency | Yes | Currency code (e.g., 'EUR', 'USD') | |
| maxPrice | Yes | Maximum price for the entire duration | |
| checkInDate | No | OPTIONAL: Check-in date. Can be a full date (e.g., '2026-05-15'), a month name (e.g., 'May' ? uses May 1st), or omit for today | |
| countryCode | No | 2-letter country code or country name (OPTIONAL - omit to search all countries) | |
| durationDays | Yes | Duration of stay in days (e.g., 30 for 1 month) |
getStaysByContinentInspect
Search for nomad stays by continent
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of stays to return (default: 15) | |
| continent | Yes | Continent name (e.g., 'Europe', 'Asia', 'Africa') |
getStaysByCountryBInspect
Search for nomad stays in a specific country by 2-letter country code or partial country name
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of stays to return (default: 15) | |
| countrycode | No | 2-letter ISO country code (e.g. 'ES', 'PT') OR partial country name |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must disclose behavioral traits. However, it only states the basic search functionality without mentioning pagination, sorting, default behavior, or what happens if no results are found.
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, well-structured sentence that is front-loaded and contains no unnecessary words. It efficiently conveys the core functionality.
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 lack of output schema and the presence of many sibling tools, the description provides the minimum needed for a basic search but lacks context about edge cases or when to prefer this tool over others.
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%, both parameters have descriptions. The description essentially repeats the schema's explanation of the countrycode parameter (2-letter code OR partial name), adding no new meaning beyond what the schema already provides.
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: searching for nomad stays by country. It uses a specific verb (Search) and resource (nomad stays in a specific country), and it distinguishes well from sibling tools like getStaysByContinent or getStaysByBudget.
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 no guidance on when to use this tool versus alternatives, such as getStaysByContinent or getStaysByLocation. It does not mention exclusions or preferred scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
getStaysByLifestyleBInspect
Search for stays by lifestyle/genre category
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of stays to return (default: 15) | |
| lifestyle | No | Lifestyle category (e.g., 'Digital Nomad', 'Beach Life') |
Tool Definition Quality
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. The description only states the basic function and does not mention what happens if no lifestyle is provided, pagination, sorting, or any side effects. This is minimal transparency for a search tool.
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 that efficiently communicates the tool's purpose. It is concise, though it could benefit from a bit more detail without sacrificing brevity.
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 is incomplete: it does not explain what the function returns, behavior when parameters are omitted (e.g., lifestyle not provided), or any pagination or default limit. Given no output schema, more context is needed for an AI agent to use it correctly.
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%, so the schema already describes both parameters (lifestyle and limit). The description does not add additional meaning or usage details beyond the schema, 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 tool's purpose: 'Search for stays by lifestyle/genre category'. It specifies the verb ('Search'), the resource ('stays'), and the filter criterion ('lifestyle'), effectively distinguishing it from sibling tools like getStaysByBudget or getStaysByLocation.
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 filtering stays by lifestyle, but provides no explicit guidance on when not to use or mention of alternatives. Given sibling tool names, the context is somewhat clear, but the description lacks explicit 'when-to-use' or 'when-not-to-use' instructions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
getStaysByLocationBInspect
Search for stays by location (city/region name)
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of stays to return (default: 15) | |
| location | Yes | City or region name to search for |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, and the description does not disclose any behavioral traits (e.g., read-only, rate limits, side effects). It simply restates the action, missing an opportunity to inform the agent about safety or constraints.
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, efficient sentence with no redundancy. Every word adds value, making it maximally concise for the information conveyed.
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 parameters, no output schema) and the presence of many sibling tools, the description is incomplete. It lacks details like ordering, pagination, or examples that would help an agent use it correctly.
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 both 'limit' and 'location' already described in the schema. The description adds no extra meaning beyond the schema, so a baseline 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 'Search for stays by location (city/region name)' clearly states the verb 'search', the resource 'stays', and the scope 'city/region name', distinguishing it from siblings like getStaysByCountry or getStaysByContinent.
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 is provided on when to use this tool versus siblings such as getStaysByCountry or getStaysByBudget. The description only states the purpose, leaving the agent to infer context from the tool name.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
getStaysByWiFiSpeedAInspect
Search for stays with minimum WiFi download speed (Mbps). Returns stays with WiFi speeds above the specified threshold.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of stays to return (default: 15) | |
| minWiFiDownloadSpeed | Yes | Minimum WiFi download speed in Mbps (default: 10) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description bears full burden. It states the input and output condition but fails to disclose behaviors like pagination, result order, or whether only available stays are returned. Missing important behavioral context for a query tool.
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 extremely concise, two sentences that directly convey purpose and outcome. No superfluous words or information.
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 (two parameters, no output schema), the description is mostly complete. It specifies the filtering criteria and return condition. However, it misses details about default behavior (e.g., limit default is not mentioned) and response format.
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 parameter descriptions. The tool description adds minimal new meaning beyond restating the threshold condition. Baseline of 3 is appropriate as no significant additional semantics are provided.
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 function: search for stays based on minimum WiFi download speed, and specifies output criteria (speeds above threshold). It is distinct from sibling tools like getStaysByBudget or checkStayAvailability.
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 when to use the tool (when filtering by WiFi speed), but does not provide explicit guidance on when not to use it or mention alternatives such as other filter tools.
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!
Your Connectors
Sign in to create a connector for this server.