-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmulti-mcp.json
More file actions
55 lines (55 loc) · 1.33 KB
/
multi-mcp.json
File metadata and controls
55 lines (55 loc) · 1.33 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
53
54
55
{
"schema_version": "0.2.0",
"domain": "acme-bistro.com",
"entities": [
{
"name": "Acme Bistro Paris",
"path": "/paris",
"location": {
"city": "Paris",
"country": "FR",
"coordinates": {
"lat": 48.8566,
"lng": 2.3522
}
},
"mcps": [
{
"provider": "booking-provider",
"endpoint": "https://mcp.booking-provider.com",
"entity_id": "acme-paris-001",
"capabilities": ["reservations", "availability", "menu"],
"priority": 10
},
{
"provider": "delivery-provider",
"endpoint": "https://mcp.delivery-provider.com",
"entity_id": "acme-del-paris-001",
"capabilities": ["ordering", "delivery_tracking"],
"priority": 5
}
]
},
{
"name": "Acme Bistro Lyon",
"path": "/lyon",
"location": {
"city": "Lyon",
"country": "FR",
"coordinates": {
"lat": 45.7640,
"lng": 4.8357
}
},
"mcps": [
{
"provider": "booking-provider",
"endpoint": "https://mcp.booking-provider.com",
"entity_id": "acme-lyon-001",
"capabilities": ["reservations", "availability", "menu"],
"priority": 10
}
]
}
]
}