MCP server for Delta Airlines - search flights, check status, manage trips
MCP server for Delta Airlines - search flights, check status, manage trips. That is what the delta mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.
MCP server for Delta Air Lines — let AI agents search flights, select seats, manage bookings, check in, get boarding passes, and check SkyMiles balance via browser automation.
The server publishes 14 tools. What each one is for:
status — Check Delta login status and session infologin — Initiate Delta SkyMiles login (opens sign-in page)logout — Clear saved session and cookiessearch_flights — Search Delta flights by origin, destination, dates, and passengersget_flight_details — Get detailed info about a flight (aircraft, layovers, baggage policy)select_flight — Select outbound/return flights to begin bookingget_seat_map — View aircraft seat map with availability and pricingselect_seats — Choose specific seats for passengersadd_bags — Add checked baggage to your bookingget_trip_extras — View upgrades, Wi-Fi passes, priority boarding, and other add-onscheckout — Complete the flight purchase (requires confirm: true)get_booking — Retrieve existing booking by confirmation numberInstallation goes through your MCP client rather than a global install: point it at playwright on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.
Plenty of browser automation servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Delta's toolset — status, login, logout and 11 more — is a fair guide to whether it matches your workflow. It is maintained by markswendsen-code; worth a glance at recent repository activity before you build anything load-bearing on it.
SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.
| Tool | What it does |
|---|---|
| status | Check Delta login status and session info |
| login | Initiate Delta SkyMiles login (opens sign-in page) |
| logout | Clear saved session and cookies |
| search_flights | Search Delta flights by origin, destination, dates, and passengers |
| get_flight_details | Get detailed info about a flight (aircraft, layovers, baggage policy) |
| select_flight | Select outbound/return flights to begin booking |
| get_seat_map | View aircraft seat map with availability and pricing |
| select_seats | Choose specific seats for passengers |
| add_bags | Add checked baggage to your booking |
| get_trip_extras | View upgrades, Wi-Fi passes, priority boarding, and other add-ons |
| checkout | Complete the flight purchase (requires confirm: true) |
| get_booking | Retrieve existing booking by confirmation number |
| check_in | Online check-in for upcoming flights (opens 24h before departure) |
| get_boarding_pass | Get digital boarding pass for checked-in flights |
Or with `npx`:
```json
{
"mcpServers": {
"delta": {
"command": "npx",
"args": ["-y", "@striderlabs/mcp-delta"]
}
}
}Configuration as documented by the project. Restart the client after saving.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
Industrial-strength web extraction — render, scrape, crawl and search entire sites into clean markdown.
The original Chromium automation reference server — simple, screenshot-driven browser control.
Give your coding agent the full DevTools toolbox: traces, network, console, heap snapshots and Lighthouse.
Puppeteer-powered browser control that drives pages from the accessibility tree instead of pixels.
Cloud browsers for AI agents — automation sessions that run in Browserbase's fleet, not on your machine.