From 89770c0a4e791059bdc291ec7844449a970f37a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartosz=20J=C4=99drecki?= Date: Tue, 21 Apr 2026 17:10:54 +0200 Subject: [PATCH] See if Splunk MCP App returns tags on remote tools --- tests/system/test_apps/ai_agentic_test_app/bin/indexes.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/system/test_apps/ai_agentic_test_app/bin/indexes.py b/tests/system/test_apps/ai_agentic_test_app/bin/indexes.py index 5dbc8650..78f7ebcd 100644 --- a/tests/system/test_apps/ai_agentic_test_app/bin/indexes.py +++ b/tests/system/test_apps/ai_agentic_test_app/bin/indexes.py @@ -59,6 +59,7 @@ class Output(BaseModel): output_schema=Output, ) as agent: assert len(agent.tools) == 1, "Invalid tool count" + raise Exception(agent.tools[0].tags) assert ( len([t for t in agent.tools if t.name == "splunk_get_indexes"]) == 1 ), "splunk_get_indexes not present"