18 lines
526 B
Python
18 lines
526 B
Python
"""Passenger MCP server — tools, resources, and prompts for the FCE agent only.
|
|
|
|
Covers: passenger notification generation, flight manifest, and
|
|
notification prompt template (multi-tone).
|
|
"""
|
|
|
|
from fastmcp import FastMCP
|
|
|
|
mcp = FastMCP(
|
|
"stellar-ops-passenger",
|
|
instructions=(
|
|
"Passenger-facing tools — notification narrative generation "
|
|
"and flight manifest access. Restricted to customer-facing clients."
|
|
),
|
|
)
|
|
|
|
from mcp_servers.passenger import tools, resources, prompts # noqa: E402, F401
|