-
Notifications
You must be signed in to change notification settings - Fork 158
Expand file tree
/
Copy pathflight_booking_agent_ecs.json
More file actions
52 lines (52 loc) · 1.63 KB
/
flight_booking_agent_ecs.json
File metadata and controls
52 lines (52 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"protocolVersion": "0.3.0",
"name": "Flight Booking Agent",
"description": "Flight booking and reservation management agent",
"url": "http://flight-booking-agent.mcp-gateway-v2.local:9000",
"version": "0.0.1",
"capabilities": {
"streaming": true
},
"defaultInputModes": ["text/plain", "application/json"],
"defaultOutputModes": ["text/plain", "application/json"],
"provider": {
"organization": "MCP Gateway",
"url": "https://github.com/agentic-community/mcp-gateway-registry"
},
"skills": [
{
"id": "check_availability",
"name": "Check Availability",
"description": "Check seat availability for a specific flight.",
"tags": ["flight", "availability", "booking"]
},
{
"id": "reserve_flight",
"name": "Reserve Flight",
"description": "Reserve seats on a flight for passengers.",
"tags": ["flight", "reservation", "booking"]
},
{
"id": "confirm_booking",
"name": "Confirm Booking",
"description": "Confirm and finalize a flight booking.",
"tags": ["flight", "confirmation", "booking"]
},
{
"id": "process_payment",
"name": "Process Payment",
"description": "Process payment for a booking (simulated).",
"tags": ["payment", "processing", "booking"]
},
{
"id": "manage_reservation",
"name": "Manage Reservation",
"description": "Update, view, or cancel existing reservations.",
"tags": ["reservation", "management", "booking"]
}
],
"tags": ["travel", "flight-booking", "reservation"],
"visibility": "public",
"license": "MIT",
"path": "/flight-booking-agent"
}