Add FlightSeatMap (remote MCP server) - #5252
Open
jackculpan wants to merge 1 commit into
Open
jackculpan wants to merge 1 commit into
jackculpan wants to merge 1 commit into
Conversation
Adds servers/flightseatmap/ — a remote hosted server, no Dockerfile needed. Seat maps, seat ratings, traveller reviews and seat alerts for 117 airlines, via streamable-http with OAuth 2.1 + dynamic client registration. Co-Authored-By: Claude Opus 5.5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds
servers/flightseatmap/— a remote hosted server, so no Dockerfile or image build is needed.https://mcp.flightseatmap.com/mcpstreamable-httptravelSeat maps, seat ratings, traveller reviews and seat alerts for 117 airlines. 10 tools:
get_seatmap,find_best_seats,get_seat_info,interactive_seat_finder,get_seat_reviews,discover_more_flight_tools,search_flight,create_seat_alert,list_seat_alerts,delete_seat_alert— 6 of the 10 work without authentication.On the omitted
oauthblockDeliberate, and it matches
servers/ais-fleetand our other PR forservers/award-travel-finder(#4834). Theoauthblock in this repo provisions a pre-issued secret (a personal access token in an env var). We have no API key and no PAT — auth is OAuth 2.1 exactly as the MCP spec describes:WWW-Authenticatechallenge pointing at/.well-known/oauth-protected-resourceSo there is nothing for the toolkit to store as a secret.
tools.jsonis[]Per CONTRIBUTING, remote servers use dynamic tool discovery, and
dynamic.tools: trueis set.initializeandtools/listare answered unauthenticated on purpose, so the catalogue can be enumerated before any sign-in:That returns
serverInfo.name: "FlightSeatMap"and confirms the endpoint is live.🤖 Generated with Claude Code