19 lines
632 B
Python
19 lines
632 B
Python
"""Shared MCP server — tools, resources, and prompts used by both agent clients.
|
|
|
|
Covers: flight status, weather (live OpenMeteo), airport status (live FAA),
|
|
maintenance flags, hub reference data, and delay explanation prompts.
|
|
"""
|
|
|
|
from fastmcp import FastMCP
|
|
|
|
mcp = FastMCP(
|
|
"stellar-ops-shared",
|
|
instructions=(
|
|
"Shared operational data tools for Stellar Air NOVA operations. "
|
|
"Covers: flight status, weather (live OpenMeteo), airport status "
|
|
"(live FAA), and maintenance flags. Used by all agent clients."
|
|
),
|
|
)
|
|
|
|
from mcp_servers.shared import tools, resources, prompts # noqa: E402, F401
|