Display tool names in catalog on arcade_mcp_server startup (#651)

This commit is contained in:
Eric Gustin 2025-10-24 11:07:25 -07:00 committed by GitHub
parent f090b7c852
commit aec26261e2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -107,6 +107,8 @@ def initialize_tool_catalog(
sys.exit(1)
logger.info(f"Total tools loaded: {total_tools}")
for tool in catalog:
logger.info(f"\t- {tool.definition.fully_qualified_name}")
return catalog