flight-master-aviation-data-mcp
Flight Master Aviation Data MCP
Official MCP integration repository for Flight Master DAST (航班管家 DAST), providing professional aviation data capabilities for AI agents, coding assistants, and MCP-compatible applications.
航班管家航空数据 MCP(Flight Master Aviation Data MCP) provides access to flight status, route flights, onboard experience, delay risk prediction, airport weather, and flight trajectory data through the Model Context Protocol (MCP).
The service supports two MCP connection modes:
Remote MCP via Streamable HTTP — recommended for most users
STDIO MCP via the official npm package — for local MCP client integration
This repository is the official public integration repository for Flight Master Aviation Data MCP. Production server-side source code and proprietary aviation data processing systems are not published in this repository.
Official Links
MCP Product Page: https://dast.133.cn/mcp/
DAST Platform: https://dast.133.cn
Agent-readable Documentation: https://dast.133.cn/mcp_assets/agent.md
Remote MCP Endpoint: https://fly.huoli.com/mcp/dast_mcp
npm STDIO Package: https://www.npmjs.com/package/@flightmaster/aviation-dast-mcp
Related MCP server: Flightradar24 MCP Server
Connection Modes
Flight Master Aviation Data MCP supports both Remote Streamable HTTP and STDIO connections.
Option 1 — Remote MCP via Streamable HTTP
Recommended for most users, hosted AI agents, and MCP clients that support remote MCP servers.
Endpoint:
https://fly.huoli.com/mcp/dast_mcpItem | Value |
Protocol | Model Context Protocol (MCP) |
Transport | Streamable HTTP |
RPC | JSON-RPC 2.0 |
Authentication | Bearer API Key |
Authentication header:
Authorization: Bearer <API_KEY>No local MCP server installation is required.
Option 2 — STDIO MCP via npm
For MCP clients that support local STDIO servers, use the official npm package:
@flightmaster/aviation-dast-mcpRun directly with:
npx -y @flightmaster/aviation-dast-mcpThe STDIO package requires the following environment variable:
DAST_API_KEY=<API_KEY>Example MCP configuration:
{
"mcpServers": {
"flight-master-dast": {
"command": "npx",
"args": [
"-y",
"@flightmaster/aviation-dast-mcp"
],
"env": {
"DAST_API_KEY": "<API_KEY>"
}
}
}
}The package also supports the optional environment variable:
DAST_MCP_URL=<CUSTOM_GATEWAY_URL>DAST_MCP_URL should normally be omitted. It is only required when a custom Flight Master DAST MCP gateway URL needs to be used.
Official npm package:
https://www.npmjs.com/package/@flightmaster/aviation-dast-mcp
Authentication
A Flight Master DAST API Key is required for both connection modes.
Remote MCP
Include the API Key in the HTTP Authorization header:
Authorization: Bearer <API_KEY>STDIO MCP
Provide the API Key through the required environment variable:
DAST_API_KEY=<API_KEY>Obtain an API Key
Visit the Flight Master DAST Platform: https://dast.133.cn
Register or sign in
Open the MCP Console
Create an API Key
Use the key in your MCP client configuration
Security: Never publish, commit, or share your real API Key in a public repository.
Available Tools
The MCP server currently provides the following six tools:
Tool | Capability |
| Query real-time or historical flight status by flight number and date |
| Query flights between two airports for a specified date |
| Query onboard experience data such as meals, Wi-Fi, seat information, entertainment, power supply, and baggage |
| Query predicted flight delay and cancellation probabilities |
| Query hourly airport weather forecasts for the next 48 hours |
| Query real-time or historical flight trajectory, position, altitude, speed, and flight status |
For complete Tool schemas, parameters, response structures, routing rules, and usage guidance, see:
https://dast.133.cn/mcp_assets/agent.md
The live MCP
tools/listresponse should be treated as the authoritative source if Tool definitions change.
Claude Code
Remote MCP
Add the hosted Remote MCP server with:
claude mcp add --transport http flight-master-dast https://fly.huoli.com/mcp/dast_mcp \
--header "Authorization: Bearer <API_KEY>"Then verify the connection:
claude mcp listReplace <API_KEY> with the API Key created in the Flight Master DAST MCP Console.
STDIO
Claude Code and other STDIO-compatible MCP clients can also use the official npm package.
Generic STDIO configuration:
{
"mcpServers": {
"flight-master-dast": {
"command": "npx",
"args": [
"-y",
"@flightmaster/aviation-dast-mcp"
],
"env": {
"DAST_API_KEY": "<API_KEY>"
}
}
}
}Cursor
Cursor supports both Remote MCP and STDIO MCP configurations.
Remote MCP — Recommended
For a personal configuration available across projects, edit:
~/.cursor/mcp.jsonExample:
{
"mcpServers": {
"flight-master-dast": {
"url": "https://fly.huoli.com/mcp/dast_mcp",
"headers": {
"Authorization": "Bearer <API_KEY>"
}
}
}
}Save the configuration and restart or reconnect Cursor. The Flight Master DAST tools should then appear in the MCP tools list.
STDIO
Alternatively, configure the official npm package:
{
"mcpServers": {
"flight-master-dast": {
"command": "npx",
"args": [
"-y",
"@flightmaster/aviation-dast-mcp"
],
"env": {
"DAST_API_KEY": "<API_KEY>"
}
}
}
}Do not commit a configuration file containing a real API Key to a public repository.
Cline
Cline supports both Remote MCP and STDIO MCP configurations.
Remote MCP — Recommended
Open MCP Servers → Configure MCP Servers in Cline and add:
{
"mcpServers": {
"flight-master-dast": {
"type": "streamableHttp",
"url": "https://fly.huoli.com/mcp/dast_mcp",
"headers": {
"Authorization": "Bearer <API_KEY>"
},
"disabled": false,
"autoApprove": []
}
}
}Replace <API_KEY> with your Flight Master DAST API Key and reconnect the server.
STDIO
Alternatively:
{
"mcpServers": {
"flight-master-dast": {
"command": "npx",
"args": [
"-y",
"@flightmaster/aviation-dast-mcp"
],
"env": {
"DAST_API_KEY": "<API_KEY>"
},
"disabled": false,
"autoApprove": []
}
}
}Generic MCP Client Configuration
Remote Streamable HTTP
Use:
URL:
https://fly.huoli.com/mcp/dast_mcpHeader:
Authorization: Bearer <API_KEY>STDIO
Use:
{
"command": "npx",
"args": [
"-y",
"@flightmaster/aviation-dast-mcp"
],
"env": {
"DAST_API_KEY": "<API_KEY>"
}
}Agent-readable Documentation
A dedicated machine-readable document is available for AI agents and automated clients:
https://dast.133.cn/mcp_assets/agent.mdIt includes:
MCP connection information
Authentication requirements
Tool selection guidance
Tool schemas and parameters
Date and airport rules
Request and response structures
Error handling
Billing behavior
Agent usage guidance
Agents integrating Flight Master Aviation Data MCP are encouraged to read this document before calling the service.
Example Use Cases
Flight Master Aviation Data MCP can be used by AI agents to answer questions such as:
What is the current status of CA1831?
What flights operate from Beijing Capital Airport to Shanghai Hongqiao Airport today?
Does this flight provide meals or Wi-Fi?
What is the predicted delay risk for this flight?
What will the weather be like at Hefei Xinqiao International Airport?
Where is this flight currently located and what is its altitude?
About Flight Master DAST
Flight Master DAST(航班管家 DAST) provides professional aviation data services and MCP capabilities for developers, AI agents, coding assistants, and aviation-related applications.
Flight Master Aviation Data MCP connects AI applications with professional aviation data through the open Model Context Protocol ecosystem.
Official MCP Product Page:
For account registration, API Key management, usage information, and billing:
Repository Scope
This repository is the official public integration repository for Flight Master Aviation Data MCP.
It contains:
MCP integration documentation
Remote MCP connection examples
STDIO npm integration examples
Authentication guidance
Client configuration examples
MCP ecosystem metadata
It does not contain:
Production MCP server source code
Internal aviation data processing systems
Proprietary data pipelines
Backend business logic
The production aviation data service and Remote MCP infrastructure are operated by Flight Master DAST.
Flight Master DAST
航班管家 DAST
Official Aviation Data MCP Service
This server cannot be installed
Maintenance
Related MCP Connectors
Aviationstack MCP — global flight + airport + airline data
Flights MCP — wraps OpenSky Network API (free, no auth required)
Google Flights search data: fares, routes, stops, and price insights via a hosted MCP server.
Flight search MCP server providing search, pagination, and itinerary details for AI assistants.
Related MCP Servers
AlicenseBqualityFmaintenanceA Model Context Protocol server implementation that provides tools for querying flight information, weather data, and flight comfort metrics through Variflight services.82,92131ISC- AlicenseBqualityDmaintenanceProvides access to real-time and historical flight data from Flightradar24 API, enabling users to track live aircraft positions, query flight histories, and retrieve comprehensive aviation information including aircraft, airline, and airport details.1510MIT
- FlicenseNot gradedqualityDmaintenanceProvides real-time flight and train ticket queries, live status tracking, and a professional knowledge base for air and rail travel. It enables users to monitor departures, check ticketing policies, and manage travel information through a unified interface.-
- AlicenseNot gradedqualityCmaintenanceProvides comprehensive flight tracking capabilities using the OpenSky Network API, enabling real-time flight data, geographic searches, historical data, and airport operations through MCP tools.MIT