From 80878f89676226c9e4f99efa5acfa4b55605e703 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Han?= Date: Wed, 2 Jul 2025 11:32:38 +0200 Subject: [PATCH] fix: add mcp dependency to agent provider MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The agent depends on utils.tools.mcp. Closes: https://github.com/meta-llama/llama-stack/issues/2576 Signed-off-by: Sébastien Han --- llama_stack/providers/registry/agents.py | 1 + 1 file changed, 1 insertion(+) diff --git a/llama_stack/providers/registry/agents.py b/llama_stack/providers/registry/agents.py index 834e81b96..6f8c05a67 100644 --- a/llama_stack/providers/registry/agents.py +++ b/llama_stack/providers/registry/agents.py @@ -23,6 +23,7 @@ def available_providers() -> list[ProviderSpec]: "pillow", "pandas", "scikit-learn", + "mcp", ] + kvstore_dependencies(), # TODO make this dynamic based on the kvstore config module="llama_stack.providers.inline.agents.meta_reference",