Skip to content

Commit c095eb9

Browse files
committed
fix filtered tools example
1 parent a6433f1 commit c095eb9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

examples/filtered_tools_example.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
items.app,
1313
name="Item API MCP - Included Operations",
1414
description="MCP server showing only specific operations",
15-
base_url="http://localhost:8001",
15+
base_url="http://localhost:8000",
1616
include_operations=["get_item", "list_items"],
1717
)
1818

@@ -21,7 +21,7 @@
2121
items.app,
2222
name="Item API MCP - Excluded Operations",
2323
description="MCP server showing all operations except the excluded ones",
24-
base_url="http://localhost:8002",
24+
base_url="http://localhost:8000",
2525
exclude_operations=["create_item", "update_item", "delete_item"],
2626
)
2727

@@ -30,7 +30,7 @@
3030
items.app,
3131
name="Item API MCP - Included Tags",
3232
description="MCP server showing operations with specific tags",
33-
base_url="http://localhost:8003",
33+
base_url="http://localhost:8000",
3434
include_tags=["items"],
3535
)
3636

@@ -39,7 +39,7 @@
3939
items.app,
4040
name="Item API MCP - Excluded Tags",
4141
description="MCP server showing operations except those with specific tags",
42-
base_url="http://localhost:8004",
42+
base_url="http://localhost:8000",
4343
exclude_tags=["search"],
4444
)
4545

@@ -48,7 +48,7 @@
4848
items.app,
4949
name="Item API MCP - Combined Include",
5050
description="MCP server showing operations by combining include filters",
51-
base_url="http://localhost:8005",
51+
base_url="http://localhost:8000",
5252
include_operations=["delete_item"],
5353
include_tags=["search"],
5454
)

0 commit comments

Comments
 (0)