Pointify Travel
Server Details
Search award flights and cash fares, optimize points, and predict fares inside ChatGPT and Claude.
- 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.8/5 across 6 of 6 tools scored. Lowest: 2.9/5.
Each tool has a clearly distinct purpose: hidden city ticketing, fare prediction, deal browsing, points optimization, calendar search, and standard flight search. No overlap in functionality.
All tools follow a consistent verb_noun pattern (e.g., check_hidden_city, get_prediction, list_deals), using imperative verbs and descriptive nouns.
Six tools is well-scoped for a travel research server. Each tool covers a distinct aspect without being too many or too few.
The tool set covers key travel research needs: search, calendar flexibility, deals, predictions, hidden city, and points optimization. Minor gaps like price alerts or booking are acceptable for an informational server.
Available Tools
6 toolsget_predictionARead-onlyInspect
Get a buy/wait/neutral recommendation for a flight fare based on historical patterns and time-based signals.
| Name | Required | Description | Default |
|---|---|---|---|
| origin | Yes | IATA airport code for departure (e.g. JFK) | |
| destination | Yes | IATA airport code for arrival (e.g. LAX) | |
| currentPrice | Yes | Current fare price in USD that you are considering | |
| departureDate | Yes | Departure date in YYYY-MM-DD format |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true (safe read) and openWorldHint=true (dynamic). The description adds context about the underlying model (historical patterns and time-based signals), providing useful behavioral insight beyond annotations. However, it could mention limitations like prediction accuracy or price volatility.
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?
A single, front-loaded sentence that conveys the essential purpose and mechanism. No extraneous words; every part contributes 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?
With four required parameters and no output schema, the description adequately describes the input context but does not explain the return format (e.g., how the recommendation is structured). Some gaps remain for an agent to fully understand the tool's response.
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 parameters are already well-documented. The description does not add any additional semantic detail about parameters beyond what the schema provides, meeting the baseline expectation.
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 uses a specific verb ('Get') and resource ('recommendation for a flight fare'), clearly stating the output type ('buy/wait/neutral') and the basis ('historical patterns and time-based signals'). It distinguishes well from sibling tools that cover different flight-related actions.
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 an agent has a fare to evaluate, but it does not explicitly state when to use this tool versus alternatives or any prerequisites (e.g., needing currentPrice). No exclusionary guidance is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_dealsCRead-onlyInspect
Browse current award travel deals and flight promotions.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of deals to return (default 12) | |
| category | No | Optional deal type filter (e.g. 'flight', 'hotel', 'card') |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations provide readOnlyHint and openWorldHint, which the description does not contradict. However, the description adds no behavioral details beyond what annotations already convey, such as caching, recency, or result variability. For a read-only tool, more context would help.
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?
Description is one short sentence with no wasted words. It is front-loaded with the key action and resource. Slightly more structure might improve scannability, but it is sufficiently 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 simple tool (few parameters, no output schema), the description is minimally complete. It lacks usage guidelines and behavioral context, but for a straightforward browse tool, it provides a basic understanding. The absence of output schema details is acceptable due to tool 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?
Schema coverage is 100% with descriptions for both 'limit' and 'category'. The description adds no extra meaning about parameters; it only gives a general tool purpose. Baseline 3 is appropriate since schema already documents parameters 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?
Description clearly states the tool lists award travel deals and flight promotions. The verb 'browse' and resource 'deals' are specific, and the tool is distinct from siblings like 'search_flights' and 'check_hidden_city'. However, it could be more explicit about whether these are curated deals or live search results.
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. The description does not mention prerequisites, when not to use, or how it differs from sibling tools. The agent must infer from context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
optimize_pointsARead-onlyInspect
Compare points redemption options for a flight and rank them by cents-per-point (CPP) value. Helps decide whether to pay cash or use loyalty points.
| Name | Required | Description | Default |
|---|---|---|---|
| cashPrice | Yes | Cash price of the ticket in USD | |
| pointsOptions | Yes | Array of available points redemption options to compare |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations indicate readOnlyHint and openWorldHint. Description adds that it ranks by CPP, providing behavioral context beyond annotations. No contradictions.
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?
Two concise sentences, front-loaded with the purpose. No unnecessary 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?
No output schema, and description only hints at the output format (CPP ranking). Lacks details about what the ranked list looks like or how to interpret results.
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 parameters are well-documented. Description adds context but does not add new semantic details beyond what's in 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 verb 'compare/rank' and the resource 'points redemption options', differentiating it from sibling tools like search_flights. It also explains the outcome: deciding cash vs points.
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 multiple points options for a flight, but does not explicitly state when not to use it or mention alternatives. However, context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_calendarARead-onlyInspect
Find the cheapest travel dates around a target date. Shows a calendar view of minimum prices for flexible date travelers.
| Name | Required | Description | Default |
|---|---|---|---|
| origin | Yes | IATA airport code for departure (e.g. JFK) | |
| daysAfter | No | Number of days after the target date to include (default: 7) | |
| daysBefore | No | Number of days before the target date to include (default: 7) | |
| targetDate | Yes | Center date for the calendar search (YYYY-MM-DD) | |
| destination | Yes | IATA airport code for arrival (e.g. LAX) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and openWorldHint, so the description adds context by specifying the output is a calendar view of minimum prices. No contradictions and useful behavior added.
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?
Two concise sentences, front-loaded with purpose. No extraneous words; each 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?
Given the simplicity of the tool, the description covers the purpose and output sufficiently. No output schema needed as the description explains the calendar view. Sibling tools are distinct.
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 does not add extra parameter information 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 uses a specific verb 'Find' and clearly identifies the resource 'cheapest travel dates' and the result 'calendar view'. It distinguishes from siblings like search_flights (specific flights) and list_deals (general deals).
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 flexible date travelers seeking cheapest dates around a target date, but does not explicitly state when not to use it or compare with sibling tools like search_flights or check_hidden_city.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_flightsARead-onlyInspect
Search for flight deals between two airports on a given date. Returns cash fares and/or award availability from multiple sources (Duffel, SerpApi, Seats.aero).
| Name | Required | Description | Default |
|---|---|---|---|
| date | Yes | Departure date in YYYY-MM-DD format | |
| origin | Yes | IATA airport code for departure (e.g. JFK) | |
| cabinClass | No | Cabin class (default: economy) | |
| returnDate | No | Return date in YYYY-MM-DD format (omit for one-way) | |
| searchType | No | Search for cash fares, award availability, or both (default: both) | |
| destination | Yes | IATA airport code for arrival (e.g. LAX) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=true. The description adds that it returns results from multiple sources, which is useful but not critical. It does not disclose additional behavioral traits (e.g., rate limits, data freshness) beyond what annotations imply.
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 with zero redundancy. It front-loads the main action and provides essential detail without 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 complexity of flight search (6 parameters, 2 enums, no output schema), the description lacks details about return format, result structure, or limitations. It is minimally adequate but leaves the agent without guidance on interpreting results or handling edge cases.
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 all parameters are already documented in the schema. The description does not add new meaning or usage context beyond restating 'between two airports on a given date', which is already covered by required parameters origin, destination, and date.
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 defines a specific action (search for flight deals) with clear scope (between two airports on a given date) and return types (cash fares and/or award availability). It distinguishes from sibling tools like check_hidden_city or optimize_points by focusing on general flight 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?
The description implies usage for flight searching but does not provide explicit guidance on when to use this tool versus alternatives like check_hidden_city or search_calendar. No when-not-to-use or context exclusions are given.
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!