|
12 | 12 | items.app,
|
13 | 13 | name="Item API MCP - Included Operations",
|
14 | 14 | description="MCP server showing only specific operations",
|
15 |
| - base_url="http://localhost:8001", |
| 15 | + base_url="http://localhost:8000", |
16 | 16 | include_operations=["get_item", "list_items"],
|
17 | 17 | )
|
18 | 18 |
|
|
21 | 21 | items.app,
|
22 | 22 | name="Item API MCP - Excluded Operations",
|
23 | 23 | description="MCP server showing all operations except the excluded ones",
|
24 |
| - base_url="http://localhost:8002", |
| 24 | + base_url="http://localhost:8000", |
25 | 25 | exclude_operations=["create_item", "update_item", "delete_item"],
|
26 | 26 | )
|
27 | 27 |
|
|
30 | 30 | items.app,
|
31 | 31 | name="Item API MCP - Included Tags",
|
32 | 32 | description="MCP server showing operations with specific tags",
|
33 |
| - base_url="http://localhost:8003", |
| 33 | + base_url="http://localhost:8000", |
34 | 34 | include_tags=["items"],
|
35 | 35 | )
|
36 | 36 |
|
|
39 | 39 | items.app,
|
40 | 40 | name="Item API MCP - Excluded Tags",
|
41 | 41 | description="MCP server showing operations except those with specific tags",
|
42 |
| - base_url="http://localhost:8004", |
| 42 | + base_url="http://localhost:8000", |
43 | 43 | exclude_tags=["search"],
|
44 | 44 | )
|
45 | 45 |
|
|
48 | 48 | items.app,
|
49 | 49 | name="Item API MCP - Combined Include",
|
50 | 50 | description="MCP server showing operations by combining include filters",
|
51 |
| - base_url="http://localhost:8005", |
| 51 | + base_url="http://localhost:8000", |
52 | 52 | include_operations=["delete_item"],
|
53 | 53 | include_tags=["search"],
|
54 | 54 | )
|
|
0 commit comments