MCPcopy Create free account
hub / github.com/SkyworkAI/DeepResearchAgent / get_info

Method get_info

src/tool/server.py:112–121  ·  view source on GitHub ↗

Get tool configuration by name Args: tool_name: Tool name Returns: ToolConfig: Tool configuration or None if not found

(self, tool_name: str)

Source from the content-addressed store, hash-verified

110 return tool
111
112 async def get_info(self, tool_name: str) -> Optional[ToolConfig]:
113 """Get tool configuration by name
114
115 Args:
116 tool_name: Tool name
117
118 Returns:
119 ToolConfig: Tool configuration or None if not found
120 """
121 return await self.tool_context_manager.get_info(tool_name)
122
123 async def cleanup(self):
124 """Cleanup all tools"""

Callers 15

transformMethod · 0.45
transformMethod · 0.45
transformMethod · 0.45
transformMethod · 0.45
transformMethod · 0.45
transformMethod · 0.45
mainFunction · 0.45

Calls

no outgoing calls

Tested by 2

mainFunction · 0.36