Duffel MCP Server
Server Quality Checklist
Latest release: v1.0.0
- Disambiguation5/5
Each tool has a clearly distinct purpose with no overlap. The tools cover specific actions like creating orders, retrieving offers/orders, listing/searching airports, and searching flights, all with well-defined boundaries. An agent can easily distinguish between them based on their unique functions.
Naming Consistency5/5All tool names follow a consistent 'duffel_verb_noun' pattern (e.g., duffel_create_order, duffel_get_offer, duffel_search_flights). This uniformity makes the tool set predictable and easy to navigate, with no deviations in naming style.
Tool Count5/5With 6 tools, the server is well-scoped for flight booking and search functionality. Each tool serves a distinct and necessary role in the workflow, from searching flights and airports to managing orders, without being overly sparse or bloated.
Completeness4/5The tool set covers core flight booking operations comprehensively, including search, retrieval, and creation. However, there are minor gaps such as the absence of tools for updating or canceling orders, which could limit full lifecycle management, though agents might work around this by using existing tools for status checks.
Average 4.6/5 across 6 of 6 tools scored.
See the Tool Scores section below for per-tool breakdowns.
Add a LICENSE file by following GitHub's guide. Once GitHub recognizes the license, the system will automatically detect it within a few hours.
If the license does not appear after some time, you can manually trigger a new scan using the MCP server admin interface.
MCP servers without a LICENSE cannot be installed.
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.jsonto 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
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds valuable behavioral context beyond annotations: it notes that offers expire after 15-30 minutes (important for timing), recommends using passenger age for accuracy, explains how to handle round trips and direct flights, and mentions the return format options. While annotations cover read-only and non-destructive aspects, the description enriches this with operational details without contradicting annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured and front-loaded with the core purpose, followed by bullet points for offer details, usage scenarios, and important notes. Every sentence adds value without redundancy, making it efficient and easy to scan for key information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity, the description is largely complete: it covers purpose, usage, behavioral nuances, and output format. With an output schema present, it appropriately omits detailed return value explanations. However, the low schema description coverage (0%) means parameter semantics are not fully addressed, leaving a minor gap in overall context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate for parameter documentation. It implicitly references parameters like destinations, dates, max_connections, and passenger age through usage examples and notes, but does not explicitly list or define all parameters. This provides some semantic context but falls short of fully documenting the input schema, aligning with the baseline expectation when schema coverage is low.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Search for available flights'), identifies the resource ('based on journey requirements'), and distinguishes it from siblings like duffel_create_order (booking) and duffel_get_offer (retrieving specific offers). It explicitly mentions creating an offer request and returning flight options with detailed components.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines5/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit guidance on when to use this tool ('when users want to: Find flights between destinations, Compare prices and schedules, Check availability for specific dates, Get flight options before booking'), which clearly differentiates it from sibling tools like duffel_create_order for booking or duffel_get_offer for retrieving specific offers. It also includes practical tips like using passenger age and handling round trips.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only, non-destructive, idempotent, and open-world behavior. The description adds valuable context beyond annotations: it specifies that offers 'expire after 15-30 minutes,' which is crucial for timing usage. However, it doesn't mention rate limits or authentication needs, leaving some behavioral aspects uncovered.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured and front-loaded with the core purpose. Each bullet point and usage guideline sentence adds specific value without redundancy. The 'Important' note is concise and critical, making every part of the text earn its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (retrieving dynamic flight data), the description is complete. It covers purpose, usage scenarios, critical timing constraints, and key data returned. With annotations covering safety and idempotency, and an output schema handling return format details, no significant gaps remain for agent understanding.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 0% description coverage, and the description provides no details about the single parameter (e.g., what 'params' contains or how to specify the offer). However, with an output schema present, the description doesn't need to explain return values. The baseline is 3 since the schema handles parameter documentation, but the description adds no semantic clarification.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'retrieve' and resource 'detailed information and current pricing for a specific flight offer.' It distinguishes from siblings like duffel_search_flights (which searches) and duffel_create_order (which books). The title 'Get Flight Offer Details' reinforces this specificity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines5/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly lists four scenarios for when to use this tool (e.g., 'User selects a flight from search results,' 'Before booking to confirm current price'). It also provides a critical exclusion: 'Always retrieve the offer immediately before booking to ensure pricing is current,' which implicitly advises against using stale data from other sources.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover key behavioral traits (readOnlyHint=true, destructiveHint=false, idempotentHint=true, openWorldHint=true), but the description adds valuable context by specifying what details are retrieved (e.g., 'Documents and tickets', 'Change and cancellation options') and mentioning the return format ('JSON or Markdown'), enhancing understanding 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.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with bullet points for fetched details and a clear 'Use this when:' section, all in a compact format. Every sentence adds value without redundancy, making it easy to scan and understand quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (retrieving flight order details), the description is complete: it covers purpose, usage guidelines, and behavioral context. With annotations providing safety and idempotency info, and an output schema handling return values, no critical gaps remain.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, but the description does not explain the single parameter (likely an order ID or reference). However, with only one parameter and high annotation coverage (e.g., openWorldHint suggests it queries existing data), the baseline is 3 as the schema must carry the burden, and the description adds no parameter-specific information.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Retrieve complete details') and resource ('existing flight order'), distinguishing it from siblings like duffel_create_order (creation) and duffel_get_offer (offers). It provides a comprehensive list of what details are fetched, making the purpose explicit and differentiated.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines5/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description includes a dedicated 'Use this when:' section with four explicit scenarios (e.g., 'User needs to review their booking', 'Before making changes or cancellations'), providing clear guidance on when to use this tool versus alternatives like duffel_create_order or duffel_search_flights.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds valuable context beyond annotations by detailing what results are included (airport name, IATA code, city/country info, GPS coordinates, time zone) and specifying return format options (JSON or Markdown). Annotations already cover read-only, open-world, idempotent, and non-destructive traits, so the description appropriately supplements with practical behavioral details without contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with clear sections (purpose, search methods, results, usage guidelines, return format) and every sentence adds value. It's front-loaded with the core purpose and efficiently organized without redundant information, making it easy to scan and understand.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity, rich annotations, and presence of an output schema, the description provides complete contextual information. It covers purpose, usage scenarios, result details, and format options, leaving no significant gaps for an AI agent to understand and invoke the tool effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage for the single parameter, the description partially compensates by explaining the search capabilities (by name, city, or IATA code) and providing examples. However, it doesn't detail the parameter's structure, required fields, or validation rules, leaving gaps in parameter understanding despite the added semantic context.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with specific verbs ('search for airports by name, city, or IATA code') and distinguishes it from sibling tools like duffel_list_airports by emphasizing search functionality rather than listing. It explicitly mentions what resources it operates on (airports) and how it helps users find correct airport codes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines5/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit guidance on when to use this tool through a dedicated 'Use this when:' section with four specific scenarios (e.g., 'User provides city/airport names instead of codes', 'Verifying airport codes before search'). It clearly differentiates use cases from potential alternatives without being misleading.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover read-only, open-world, idempotent, and non-destructive properties. The description adds valuable behavioral context about pagination, country filtering format (ISO 3166-1 alpha-2 codes), and return format options (JSON or Markdown), enhancing understanding 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.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is perfectly structured with a clear opening statement, bulleted usage guidelines, explicit alternative tool mention, and return format note. Every sentence adds value with zero wasted words, making it highly efficient and front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity, rich annotations covering safety properties, and the presence of an output schema (which handles return value documentation), the description provides complete contextual coverage including purpose, usage scenarios, parameter semantics, behavioral details, and sibling differentiation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage for the single parameter, the description fully compensates by explaining the country filter parameter's purpose, format (ISO 3166-1 alpha-2 codes), and providing examples ('US', 'GB', 'FR'), adding substantial meaning beyond the bare schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'retrieves' and resource 'paginated list of airports' with specific filtering capability. It explicitly distinguishes from sibling tool duffel_search_airports, making the purpose distinct and well-defined.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines5/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit 'Use this when' scenarios (exploring airports, country-specific lists, building selection lists) and explicitly names when NOT to use it ('For finding a specific airport, use duffel_search_airports instead'), offering complete guidance on tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior5/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds significant behavioral context beyond annotations: it discloses that this creates real bookings with payment implications, is typically non-refundable, and has specific response codes (201, 200, 202) with different meanings. Annotations provide basic hints (not read-only, not idempotent, etc.), but the description elaborates on real-world consequences like airline reservations and webhook notifications.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
Well-structured with clear sections (warning, prerequisites, required data, returns, response codes, testing note) and front-loaded critical information. Some redundancy exists (e.g., 'Returns order details' appears twice), but overall it's efficient with no wasted sentences.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (real-world booking with payment), lack of schema descriptions, and presence of an output schema, the description is highly complete. It covers purpose, usage, behavioral risks, parameter expectations, response handling, and testing guidance, leaving minimal gaps for the agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage and 1 parameter (params referencing CreateOrderInput), the description compensates well by explaining required data: offer ID, passenger details (names, DOB, contact), and payment information. It doesn't detail the exact structure of CreateOrderInput but provides meaningful semantic context about what the parameter should contain.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Create a flight booking') and resource ('order for the specified offer and passengers'), distinguishing it from sibling tools like duffel_get_offer (read-only) and duffel_search_flights (search). It goes beyond the title by specifying it's for flight booking with offer and passenger inputs.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines5/5Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly provides when to use (after verifying offer with duffel_get_offer, confirming passenger details, checking payment, and understanding terms) and when not to use (without test mode tokens to avoid charges). It names the alternative tool (duffel_get_offer) and includes prerequisites in a numbered list.
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
Copy to your README.md:
Score Badge
Copy to your README.md:
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/FortripEngineering/duffel-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server