Developer Documentation
MCP Server Documentation
Technical reference for the Look Book & Fly MCP server. Integrate private jet charter search, quoting, and booking into AI assistants via the Model Context Protocol.
Overview
The Look Book & Fly MCP server enables AI assistants to search for private jet charter flights across the global marketplace, submit quote requests to aircraft operators, and track quote status — all on behalf of the user within a conversational interface.
Server URL
https://www.lookbookandfly.com/api/mcpTransport
Streamable HTTP (primary), SSE (legacy)
Authentication
None required (public API)
Operator
Jet Token Inc. (DOT-registered air charter broker)
Available Tools
search_airportsRead OnlySearch for airports by name, city, or ICAO/FAA code. Returns up to 10 results ranked by relevance. For US airports, 3-letter FAA codes work (e.g., 'SAN' finds KSAN).
Parameters: query (string, min 2 chars), limit (number, optional)
search_flightsRead OnlySearch for available charter aircraft between two airports. Returns aircraft options with estimated prices, flight times, images, safety ratings, and empty leg deals. Queries the global Avinode marketplace in real time (10-30 second response). On supported clients, renders an interactive UI with aircraft cards.
Parameters: from (ICAO), to (ICAO), date (YYYY-MM-DD), time (HH:MM), passengers (1-16), returnDate (optional), returnTime (optional)
request_quoteWriteSubmit formal quote requests to aircraft operators for selected aircraft from a search. Creates a trip record and sends RFQs via Avinode. Returns a reference code for tracking. Maximum 3 aircraft selections.
Parameters: searchId, selectedLeads (array), firstName, lastName, email, phone, message (optional), rerouteSelections (optional array)
get_quote_statusRead OnlyCheck the status of a quote request by reference code. Returns trip details, flight legs, and any quotes received from operators with firm pricing.
Parameters: quoteId (reference code or UUID)
contact_usWriteSend a message to the charter team for inquiries outside the standard search-and-quote flow: group charters, special requirements, general aviation questions.
Parameters: name, email, phone (optional), message
Typical Workflow
Find airports
Use search_airports to resolve city names to ICAO codes (e.g., 'San Diego' → KSAN)
Search flights
Use search_flights with ICAO codes to get available aircraft, prices, and empty leg deals
Select aircraft
User selects up to 3 aircraft from the results (interactive UI on supported clients)
Request quotes
Use request_quote with selected IDs and customer contact info to submit RFQs to operators
Track status
Use get_quote_status with the reference code to check for operator responses
Usage Examples
Example 1: One-way flight search
User Prompt
Tools Used
Expected Behavior
Example 2: Round-trip with quote request
User Prompt
Tools Used
Expected Behavior
Example 3: Check quote status
User Prompt
Tools Used
Expected Behavior
Example 4: General inquiry via contact
User Prompt
Tools Used
Expected Behavior
Setup Instructions
No authentication or API keys required. Simply add the server URL to your MCP client.
// Claude: Settings > Connectors > Add custom connector
Server URL: https://www.lookbookandfly.com/api/mcp
// ChatGPT: Settings > Apps > Developer Mode > Create
Server URL: https://www.lookbookandfly.com/api/mcp
// Claude Desktop (claude_desktop_config.json)
{
"mcpServers": {
"lookbook": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://www.lookbookandfly.com/api/mcp"]
}
}
}