CorporateTravel Dispatch MCP
OfficialThe CorporateTravel Dispatch MCP server provides tools for operational dispatch, flight tracking, and administrative control, focused on aviation and ground transportation logistics primarily in the DC area.
Platform Health & Feed Monitoring
Check service health, feed freshness, and error states for all data sources (TFR, METAR, NWS, NOTAM, Amtrak, ATCSCC, runsheet)
Airspace & Aviation Data
Retrieve active FAA Temporary Flight Restrictions (TFRs), including AI-enriched versions with threat level, movement type (POTUS/Marine One/AF1), and plain-language summaries
Fetch active NOTAMs for DC-area airports
Access the FAA ATCSCC National Operations Plan (ground delays, ground stops, miles-in-trail restrictions)
Weather
Get DC-area METAR snapshots (ceiling, visibility, wind, flight category) for KIAD, KDCA, KBWI
Retrieve active NWS weather alerts (warnings, watches, advisories) for the DC metro region
HEMS & Ground Operations
Query the Critical Predictability State (CPS) — a go/no-go score for HEMS operations based on ceiling, visibility, wind, precipitation, airspace, and GDP
Get ground route impact assessments for DC-area chauffeur corridors with recommended adjustments
Check Amtrak train status at Washington Union Station (Acela, NE Regional)
Access the active trip runsheet with client, pickup, destination, and status details (requires Tailscale)
Daily Briefing
Retrieve an AI-generated daily operational brief synthesizing TFRs, weather, CPS, NWS alerts, and ATCSCC ops plan
VIP Flight Watchlist
List, add, and remove flights/persons/ground subjects from a VIP watchlist for automated ntfy push monitoring
Live Flight Tracking (ADS-B via airplanes.live)
Look up real-time aircraft position by ICAO callsign, tail/registration number, or confirmed ICAO 24-bit hex address
Admin Tools (requires DISPATCH_TOKEN)
Extended health check with internal queue and container status
Force-refresh any named data feed on demand
Trigger immediate CPS recomputation or ATCSCC ops plan snapshot
Send push notifications via ntfy with configurable priority
View the append-only audit log (90-day retention)
Sends push notifications via ntfy.sh for alerting and monitoring.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@CorporateTravel Dispatch MCPcheck active TFRs near DC"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
corporatetravel-dispatch-mcp
Right repo? You want
corporatetravel-dispatch-mcp(this one) for the MCP server. The dispatch platform source lives atcorporatetraveldc-dispatch. The public mirror is atctdi-dispatch.
MCP server exposing the CS Executive Services dispatch platform and airplanes.live flight tracking as portable, agent-agnostic tools. Works with any MCP-compatible agent: Claude Code, Cline, Cursor, Zed, Windsurf, and others via mcpo → Open WebUI.
ALL Public Commits are GPG signed using Key: ABD3976FCC006E0F3FE559177286B3118BA4EFB2 Pubkey is included in this repo as ABD3976FCC006E0F3FE559177286B3118BA4EFB2.gpg
Tools (21 total)
Dispatch Platform — Tier 0 (no auth required)
Tool | Endpoint | Description |
|
| Service health + snapshot ages |
|
| Feed freshness and error state |
|
| Active TFRs from FAA |
|
| TFRs with AI threat interpretation |
|
| DC-area METAR snapshot |
|
| Active NWS weather alerts |
|
| Active NOTAMs (requires FAA key on Pi) |
|
| Critical Predictability State (HEMS go/no-go) |
|
| Ground route impact assessment |
|
| Amtrak status at WAS |
|
| AI-generated daily operational brief |
|
| ATCSCC National Operations Plan |
|
| Active trip runsheet (Tailscale-only) |
Dispatch Platform — Watchlist
Tool | Method | Description |
| GET | List active VIP watchlist sessions |
| POST | Add flight/person to watchlist |
| DELETE | Remove watchlist session |
Admin (requires DISPATCH_TOKEN)
Tool | Description |
| Extended health check |
| Force-refresh a named feed |
| Force CPS recomputation |
| Force opsplan fetch |
| Send ntfy push notification |
| View audit log |
Flight Tracking — airplanes.live (no auth)
Tool | Description |
| ADS-B position lookup by ICAO callsign |
| ADS-B position + hex by tail number |
| ADS-B position by confirmed ICAO hex |
Hex resolution order: callsign → registration → hex. Always confirm hex via
flight_get_by_registration before adding to watchlist — hex is airframe-bound;
callsign-to-hex mappings can be stale day-over-day.
Related MCP server: quads-mcp
Install
pip install -e .Requires Python 3.11+.
Configure
Env var | Default | Notes |
|
| Use Tailscale IP for runsheet |
| (empty) | Required for admin tools ( |
|
| HTTP timeout (seconds) |
|
| airplanes.live timeout (seconds) |
|
|
|
|
| Port when transport=http |
Context efficiency and plan compatibility
MCP tool responses are structured and compact — each tool returns only the data the agent actually needs, rather than dumping raw API payloads into the context window. This matters for subscription plan users:
Claude Pro ($20/mo) — operational dispatch workflows (TFR checks, CPS queries, flight lookups, daily brief) stay well within the 5-hour message window because context stays lean. No API key required. Pairing with a context guardian skill (e.g. the
dispatch-context-guardianCowork skill bundled with this deployment) automatically compacts sessions before they hit plan limits, extending sessions significantly without manual intervention.Claude Max / API — no additional benefit from a guardian on that axis, but the compact responses still reduce per-request token cost and latency.
Cline / Cursor / Windsurf — same economy applies; MCP tool calls consume far fewer tokens than equivalent REST-then-paste workflows.
The guardian angle is specifically useful for operators running continuous dispatch monitoring inside a chat session — without it, accumulated API responses and skill output would exhaust a Pro plan window in under an hour. With compact tool responses + guardian-triggered compaction, the same session can run for a full shift.
Use with Claude Code
Register at user scope (persists across projects):
claude mcp add dispatch \
-e DISPATCH_BASE_URL=https://ops.csexecutiveservices.com \
-e DISPATCH_TOKEN=your-token-here \
--scope user \
-- dispatch-mcpOr add to ~/.claude/.claude.json directly under "mcpServers":
{
"mcpServers": {
"dispatch": {
"type": "stdio",
"command": "/full/path/to/dispatch-mcp",
"args": [],
"env": {
"DISPATCH_BASE_URL": "https://ops.csexecutiveservices.com",
"DISPATCH_TOKEN": "your-token-here"
}
}
}
}Use with Cline / Cursor / Zed / Windsurf
Same MCP JSON config block — each supports mcpServers in their settings file.
Path the command to the installed dispatch-mcp binary or python -m dispatch_mcp.server.
Use with Open WebUI / Conduit
See docs/mcpo-openwebui.md for the mcpo bridge setup.
Verify syntax
python -m py_compile dispatch_mcp/server.py \
dispatch_mcp/config.py \
dispatch_mcp/client.py \
dispatch_mcp/tools/dispatch.py \
dispatch_mcp/tools/flight.py \
dispatch_mcp/tools/admin.py
echo "All clean"Notes
Tier 0 endpoints (
/api/v1/*) require no authentication.dispatch_get_runsheetis Tier 1 (Tailscale-gated): setDISPATCH_BASE_URL=http://100.94.80.100:8000.Admin endpoints require
DISPATCH_TOKEN. Create tokens on the Pi:csex-token create.dispatch.csexecutiveservices.comhas Cloudflare Access on POST routes; useops.csexecutiveservices.comfor programmatic access.CUI rules: this server never generates or exposes SHARES/HEARS/HEART frequencies. The platform ships with empty placeholder credential files.
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/CorporateTravelDC/corporatetravel-dispatch-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server