We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1a28b8 commit 8a609ddCopy full SHA for 8a609dd
mcpgateway/services/tool_service.py
@@ -687,13 +687,10 @@ async def register_tool(
687
plugin_chain_pre=tool.plugin_chain_pre if tool.integration_type == "REST" else None,
688
plugin_chain_post=tool.plugin_chain_post if tool.integration_type == "REST" else None,
689
)
690
- logger.info(f"Registering tool: {db_tool.name} (output_schema: {db_tool.output_schema}")
691
-
692
db.add(db_tool)
693
db.commit()
694
db.refresh(db_tool)
695
await self._notify_tool_added(db_tool)
696
- logger.info(f"Registered tool: {db_tool.name}")
697
return self._convert_tool_to_read(db_tool)
698
except IntegrityError as ie:
699
db.rollback()
0 commit comments