MCPcopy
hub / github.com/calesthio/OpenMontage / get

Method get

tools/tool_registry.py:141–143  ·  view source on GitHub ↗

Get a tool by name.

(self, name: str)

Source from the content-addressed store, hash-verified

139 self.discover(package_name)
140
141 def get(self, name: str) -> Optional[BaseTool]:
142 """Get a tool by name."""
143 return self._tools.get(name)
144
145 def list_all(self) -> list[str]:
146 """List all registered tool names."""

Calls

no outgoing calls